How to tune WordPress: Object Caching, Compression, Plugins, Full-text Search
When you have 100,000 post in your blog site, your WordPress will be extremely slow. Here is how I made WordPress runs faster:
1, Edit your wp-config.php file, add the following line this line : define ('WPLANG', '');
define('ENABLE_CACHE', true);
2, Install wp-cache plugin, don’t forget to turn on caching after activating it.
3, Add the following two lines to your .htaccess file under web root directory (ref):
php_flag zlib.output_compression on
php_value zlib.output_compression_level 2
4, Remove all unnecessary plugins.
Popularity: 1%


















































