Forum Moderators: coopster
I'm pretty sure my implementation of it works in compressing the entire page (GZIP tests show that it does) I'm just curious as to how other PHP users are utilizing ob_gzhandler.
For example, if I have a web page with no PHP elements on it (other than ob_gzhandler) I put this at the top of the page:
<?php ob_start ("ob_gzhandler");?>
Does this compress the entire page? It would appear so. But, I'm still curious how others are using PHP GZIP compression on their sites.
Thanks in advance for any comments.
One way to do it is with a .htaccess file including "php_value zlib.output_compression On".