What are the top cache plugins for wordpress?

What are the top cache plugins for wordpress? There are several popular cache plugins for WordPress, including: Redis Object Cache – A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, Relay, replication, sentinels, clustering and WP-CLI. Panomity WP Cache – Provides an extremely simple full page cache of the homepage. WP Fastest Cache … Read more

Install WordPress on Apache (Debian)

So, the following we run the commands to set up apache for wordpress. Download and unzip the WordPress package from: Then extract the package to the apache root directory: Activate Mod Rewrite. Create vhosts. After installing it, you will need to restart Apache services with the command: If needed, you will need to edit the … Read more

Hardening Your WordPress CMS

Here are some great resources for hardening you CMS: WordPress: OWASP WordPress Security Implementation Guide [OWASP] WordPress: Hardening WordPress [Official WordPress Codex] General: How to Secure your CMS [MalwareBytes] General: A Security Overview of Content Management Systems [Detectify]  

Moving WordPress Site with Wordfence Plugin

I recently moved a wordpress site to a different host and after all the files and database were updated kept getting the following error: After reviewing the KB files here: https://docs.wordfence.com/en/After_moving_a_site_or_deleting_some_files,_I_see:_PHP_Fatal_error:_Unknown:_Failed_opening_required_/var/www/html/wordfence-waf.php https://docs.wordfence.com/en/Web_Application_Firewall_FAQ#How_can_I_remove_the_firewall_setup_manually.3F I was able to modify the .user.ini file and the wordfence-waf.php file to set the correct path and all is well.

Change and Update WordPress URLS in Database When Site is Moved to new Host

UPDATE wp_options SET option_value = replace(option_value, ‘http://www.oldurl’, ‘http://www.newurl’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’; UPDATE wp_posts SET guid = replace(guid, ‘http://www.oldurl’,’http://www.newurl’); UPDATE wp_posts SET post_content = replace(post_content, ‘http://www.oldurl’, ‘http://www.newurl’); UPDATE wp_postmeta SET meta_value = replace(meta_value,’http://www.oldurl’,’http://www.newurl’); mysql> UPDATE wp_options SET option_value = replace(option_value, ‘http://www.oldurl’, ‘http://www.newurl’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’; Query … Read more