Enable Output Compression

Home » PHP » Enable Output Compression
Date: 2007-05-28
Link: http://php.devquickref.com/php-enable-output-compression-gzip-deflate.html

Enable output compression of your site, reduce bandwidth and page load time.

 
Paste following code as the beggining in your config file in order compression to be applied to all files.
<?php
ob_start
'ob_gzhandler' );
?>