Enable Gzip Compress on Wordpress with WP-Cache 2.x
WP-Cache is a page caching system plugin for Wordpress blog that cache Wordpress pages during the first load or after a page expired, and store each Wordpress page in a static HTML file which in turn used to serve future requests. This process of web server serving the HTML pages directly from the file rather than building the page again by loading and compiling the whole PHP code, and retrieving the necessary data from the database where there is any page request significantly reduces the resource needed to run a responsive and fast website. Meanwhile, Gzip compression is an option provided by Wordpress that allows web server to serve the articles in compressed format if request by supported web browser, reducing bandwidth used and improving performance.
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.
Related Articles
- Unzip or Decompress or Uncompress Gzip (.gz or .gzip) Files in Windows
- Download WordPress 2.3 Release Candidate 1 (RC1) with Tags Support
- Run WordPress at Top Fast Speed by Putting Objects and Variables into XCache or eAccelerator Cache Memory (Plugin)
- Download Previous or Old Version of WordPress
- WordPress WYSIWYG Visual Editor Not Working or Not Appearing
- WordPress 2.1.1 Critical Security Alert – Download Upgrade to 2.1.2
- Integrate WordPress including Comments with bbPress Forum using bbSync
- How to Change the Frequency or Interval WordPress Auto Saves An Editing Post or Page
- How to Increase the WordPress Dashboard Incoming Links Widget Items
- Disable WordPress 2.3 Core and Plugins Update Check and Notification










































September 20th, 2008 08:32
Thanks this code edit really increased my page load time