Sometimes wordpress may have errors that you want to find out more about. Here are a few steps we can take to see more information on what’s happening.
Wordpress
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
Fatal error: Allowed memory size of 41943040 bytes exhausted in WordPress
Error in WordPress Toolkit when updating. Solution In File Manager, Edit the file and change the lower memory limit: public_html/wp-includes/default-constants.php Change From: Cange to: In WordPress Toolkit, re-run check for updates. Now you can update.
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]
How to fix a “cURL error 28: Connection timed out” in WordPress ?
I recently received this error on a wordpress site update: cURL error 28: Connection timed out after 10001 milliseconds with wordpress update. The Fix: The first thing to do is to update your WordPress to the latest version if not already done. Then, check the following points : Make sure your server is running a … Read more
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
Configure Automatic Updates WordPress
Implement WordPress automatic Updates using wp-config file Before editing, creating a complete backup. After backup, Navigate to the home directory and makes changes in wp-config.php file. Add the following…
How to deactivate all plugins when not able to access the administrative menus?
http://codex.wordpress.org/FAQ_Troubleshooting#How_to_deactivate_all_plugins_when_not_able_to_access_the_administrative_menus.3F