A plugin that properly enables Wordpress in a high available, cluster environment using Memcache with File caching failover. No need for separate caching plugins. This plugin handles all the caching and works with CDN. Includes filters to prevent caching on certain pages, users, etc. Detail documentation on the Admin dashboard. Multisite enabled.
The following publication, "Wordpress High Availability: Configuration, Deployment, Maintenance Tips & Techniques" available on Amazon at (
http://www.amazon.com/dp/B00RAIMGAC)
- Make sure Memcache is installed and enabled, See below
- Upload
wp-truecache
to the /wp-content/plugins/
directory
- Make sure that the PHP Memcache extension is installed. Use PHP Info to verify.
- Edit wp-config.php and add the following lines just above / That's all, stop editing! Happy blogging. /
define('WP_MEMCACHE_SERVERS','[replace with an actual memcache IP address]');
define('WP_MEMCACHE_PORT',11211);
define('WP_CACHE',true);
// 192.168.0.11,11211
define('WP_MEMCACHE_FULL_SERVER_LIST','[list of server IP's follow by port number]');
- Now activate the plugin from the Admin dashboard.
- See the side bar menu.