Categories
performance web performance wordpress

WordPress Performance: Vanilla vs Cached

In the post an inquiry into the performance difference of various wordpress setups is examined. A Vanilla WordPress Instance is compared with the following factors: PHP Opcache, W3 Total Cache plugin with redis, disk enchanced and memcached page caches enabled. This can be used to give an idea but as always with performance your context […]

Categories
wordpress

Protecting your wordpress from multiple posts on wp-login.php and XMLRPC Bruteforce

I recently added New Relic server monitoring APM to my server and I noticed something interesting. Look at the screenshot below all the purple in the graph just shows that someone is brute-forcing my login. It is burning my much needed resources for other apps on the box with multiple posts on wp-login.php I needed […]

Categories
wordpress

Debug WordPress PHP Whitescreen of Death

This article highlights what you need to do to debug a WordPress Whitescreen of Death whether in the dashboard or frontend. Go to: wp-config.php Then change: define(‘WP_DEBUG’, false); To: define(‘WP_DEBUG’, true); Source: Tutsplus Fix WordPress White Screen of Death