Hi,
I added a "ob_start("ob_gzhandler");" at the top of my php pages to compress the output using the gZip lib.
But i'm not sure the page is really compressed, since it's completely transparent to the user.
Is there a way to know if the page is compressed or not ?
Plus I just wrote "ob_start("ob_gzhandler");" one time, in the index page of my site, which contains includes for the other pages to be displayed into the index (using "index.php?page=stuff_to_include", you know).
Must I add "ob_start("ob_gzhandler");" on all the pages, even if they are displayed into "index.php", that already contains that function ?
Thanks in advance for your help!