LacaK wrote:
I see contents using Network Monitor, so I se response header and contents andthey are uncompressed, so somresion does not uccured.


It's likely the browser is uncomressing it before you ever see it.  I
would telnet to port 80 and make an HTTP request to see for sure.



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