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
- Run WordPress at Top Fast Speed by Putting Objects and Variables into XCache or eAccelerator Cache Memory (Plugin)
- Display and View FireFox Cache Files Without Browser Cache Viewer
- Paginating or Split WordPress Post or Page with NextPage in WordPress Not Working
- Cache Busting Definition and Explaination
- 3 Column Relaxation WordPress Theme comments-paged.php for Paged-Comments WordPress Plugin
- How to List and Show WordPress Posts That Comments and Pings Off (Not Allow)
- How to Customize, Modify or Change WordPress Database Connection Error Page
- Disable and Turn Off Post Revisions Tracking in WordPress 2.6 or Above
- Using PHP-MySQL Persistent Connections to Run WordPress Blog










































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