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 →

wp gatsby netlify - WordPress to Gatsby on netlify ☄️

WordPress to Gatsby on netlify ☄️

When migrating from WordPress CMS to another CMS there are a couple of ways to easily export all your posts and media files: In this guide we will be using the WPGraphQL plugin and Netlify to deploy a Gatsby website. Step 1. Fork the gatsbyjs/gatsby-starter-wordpress-blog repo on Github Step 2. Edit the gatsby-config.js file and … Read full article →

Complete List of WordPress Language Locales UPDATED - Complete List of WordPress Language Locales 🏳️‍🌈 UPDATED

Complete List of WordPress Language Locales 🏳️‍🌈 UPDATED

This is a complete and UPDATED list of WordPress Language Locales. A locale is the translation language code used in WordPress that usually consists of a combination of language code and country code, combined with an underscore, for example en_AU or en_GB. Use the search below to find the locale code for your language: * { box-sizing: border-box; … Read full article →

how to hide a plugin from wordpress plugins page - How to hide a plugin from the WordPress plugins list 🙈

How to hide a plugin from the WordPress plugins list 🙈

wp-admin/plugins.php displays the plugins list table using the array $plugins_all which contains information on all installed plugins. We can use pre_current_active_plugins hook to perform actions before the plugin information is displayed on this page. TIP: The best way to understand what a hook does is to look at where it occurs in the source code. … Read full article →

wordpress salts generator tool - WordPress Salts and Security Keys Generator Tool

WordPress Salts and Security Keys Generator Tool

WordPress salts are a security feature in the WordPress platform that helps protect your website from malicious attacks. They are a series of random strings of characters that are added to the password hashing process, making it more difficult for hackers to crack your passwords. There are several reasons why it is important to change … Read full article →

LinkedIn WordPress Assessment Answers 2023 - LinkedIn WordPress Assessment Answers

LinkedIn WordPress Assessment Answers

2. You can harden your WordPress site security by adding______to your wp-config.php file? 3. In WordPress, what is the block editor used for? 4. Which WP_CLI command would you use to manage the capabilities of a user role? 5. On a regular WordPress install, what is the difference between transients and the object cache? 6. … Read full article →

Reinstall all WordPress plugins using WP CLI - Reinstall all WordPress plugins using WP-CLI

Reinstall all WordPress plugins using WP-CLI

Here is a convenient WP-CLI command that I use when cleaning hacked WordPress websites in order to reinstall all plugins from WordPress.org It consists of two commands: get a list of all active plugins, then force reinstall for each plugin. To reinstall all WordPress themes in the same manner use:

WordPress Recently Active Plugins - WordPress Recently Active Plugins

WordPress Recently Active Plugins

How does WordPress’s Recently Active Plugins list work? Recently Active lists inactive plugins that have been deactivated in the last 7 days. In wp-admin/plugins.php line 212 the option “recently_activated” gets updated if a plugin is deactivated: so the data is stored in the database table wp_options > recently_activated The option contains an associative array containing the path … Read full article →

WordPress database error Table .dbwp options is marked as crashed and should be repaired - WordPress database error Table './db/wp_options' is marked as crashed and should be repaired [✔️ SOLVED]

WordPress database error Table ‘./db/wp_options’ is marked as crashed and should be repaired [✔️ SOLVED]

Here are 4 different methods to fix the scary-looking error: “WordPress database error Table ‘./db/wp_options’ is marked as crashed and should be repaired”. NOTE: It is critically important that you backup your database before performing any of the following suggestions. You’re fully responsible for undertaking this yourself, I can’t be held responsible if you break … Read full article →