of course I have removed ob_start(...)

david forums wrote:
do not forget to remove ob_start, also you'll make double compression

regards

Le Tue, 12 Jul 2005 12:29:02 +0200, LacaK <[EMAIL PROTECTED]> a écrit:

Thank you,
I know this technique : ob_start('ob_gzhandler');
but I am interesting on : ini_set('zlib.output_compression', true);
/this is preffered method as stated in manual :
Also note that using ini.zlib.output_compression is preferred over ob_gzhandler(). /
And I do not understand, why it does not works ?
I have reported it as a bug ...
LacaK.

Jasper Bryant-Greene wrote:

 To turn it on:
ob_start('ob_gzhandler');
 To turn it off:
while(@ob_end_clean());
header('Content-Encoding: identity');



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to