no referer Error on LiteSpeed Cache Purge - no referer Error on LiteSpeed Cache Purge

no referer Error on LiteSpeed Cache Purge

When purging cache from the LiteSpeed Caching plugin the error no referer is shown and purging is not working. This error is caused by the Security Headers Referrer-Policy setting “no referer” on the server (or Cloudflare). The no-referrer value instructs the browser to never send the referer header with requests that are made from your site. This … Read full article →

yoastseophp81 - Yoast SEO is (kind of) incompatible with PHP8

Yoast SEO is (kind of) incompatible with PHP8

Yoast SEO is compatible with PHP 8 and PHP 8.1 but the Composer that YoastSEO is using doesn’t yes support PHP 8.0 so you might experience problems when editing posts&pages in WordPress. According to this comment there are still 19 other PHP version incompatibilities remaining to be fixed. 😲 So turns out that YoastSEO is … Read full article →

Happy New Year WordPress 2023 - New Ideas For 2023? 🎊🥳🕺

New Ideas For 2023? 🎊🥳🕺

We wish all our readers a Happy and Healthy New Year! We hope you enjoyed WPXSS in 2022 and that you will keep reading our blog in the coming years! To make the site more interesting for you, I would like to hear from you, what you like to read on our blog!

I would greatly appreciate it if you can provide us with new ideas and suggestions on what we could write about in 2023. We like to have user-driven content – unique and helpful posts, that the vast majority of visitors find worth reading. So leave your ideas in our comment area and I will try my best to cover them in the upcoming year. 🥳

I wish everyone a Happy New Year!

stefanpejcic signature - New Ideas For 2023? 🎊🥳🕺
Disable WordPress Comments - Disable WordPress Comments

Disable WordPress Comments

There are several ways to disable comments in WordPress: From the WordPress administration panel This will disable comments on all new posts and pages. If you want to disable comments on existing posts and pages, you can do so by editing each post or page and unchecking the “Allow comments” option. Using a plugin There … Read full article →

Reset WordPress password from the command line - Reset WordPress password from the command line

Reset WordPress password from the command line

1. log in to the MySQL: mysql -u root -p; 2. Select the database: use database_name; 3. List all users: select * from wp_users\G 4. Change the password for the user you require: UPDATE wp_users SET user_pass=MD5(‘new_password_here’) where ID=user_id_here;

Remove cronjobs from AnonymousFox malware - 🔴 FoxAuto WordPress malware

🔴 FoxAuto WordPress malware

The AnonymousFox Hack guide by Sucuri misses a huge step in cleaning a hacked WordPress website, and that step is: removing the cronjobs While removing AnonymousFox malware from a website I noticed the following cron: It downloads a script from http://hello.hahaha666.xyz/xxxd and runs it, the script is: It creates a new folder css and replaces … Read full article →

How to Rename wp login.php  - How to Rename wp-login.php

How to Rename wp-login.php

It is generally not recommended to rename the wp-login.php file in a WordPress installation as this can cause issues with the WordPress site and may make it difficult or impossible to log in to the WordPress administration panel. However, if you still want to rename the wp-login.php file, you can do so by following these … Read full article →

WooCommerce Change the Serbian Dinar currency symbol from рсд. to RSD. - 🛍️ WooCommerce: Change the Serbian Dinar currency symbol from рсд. to RSD.

🛍️ WooCommerce: Change the Serbian Dinar currency symbol from рсд. to RSD.

For years WooCommerce was showing the Serbian currency as дин. but this was recently changed to рсд. and now Serbian currency is available in WooCommerce only in Cyrillic script (РСД). You’ll see more details here. But because the Serbian language can be written both in Cyrillic as well as in Latin script, and almost 100%, of … Read full article →