If you install WP-Cache version 2.0 or 2.1, you will be requested to turn off or disable Gzip compression in Options -> Reading tab. Although WP-Cache2 is fast enough, however, you can still try to enable the Gzip compression to further speed up the web server, improve the overall performance of network and website, and save the network bandwidth, by using the following trick. The hack allows Gzip compression to be used with WP-Cache system, by making WP-Cache compress the page articles, instead of WordPress.
To turn on Gzip compression of web page while using WP-Cache 2, simply edit the wp-cache-phase1.php which is located in the WP-Cache plug-in folder inside the Plugins directory with text editor such as vi:
Add the following line:
if ( extension_loaded('zlib') ) ob_start('ob_gzhandler');
Before this line:
foreach ($meta-»headers as $header) {
Note that you still should not turn on or enable the Gzip compress article in WordPress. If you do so, WP-Cache will not work.