How to have WP-Cache with Gzip compression enable?
The default WP-Cache plugin do not support gzip compression. If you would like to turn on WP-Cache with gzip compression you need to do some hacking. Here are the steps:- 1st: Download the latest version of WP-Cache 2nd: Turn off gzip in the Options. 3rd: Edit: wp-cache-phase1.php Add this line: if ( extension_loaded(’zlib’) ) ob_start(’ob_gzhandler’); Before this: foreach ($meta->headers as $header) { header($header); 4th: Edit: /wp-content/advanced-cache.php Add: if ( extension_loaded(’zlib’) ) ob_start(’ob_gzhandler’); Before this: foreach ($meta->headers as $header) { That’s it! and now your site should be fast enough!