views:

69

answers:

1

Hello. I have a page with gzip and in my php index file i have ob_start('ob_gzhandler');

[HTTP_ACCEPT_ENCODING] has value gzip,deflate and even that i receive in some refresh case that error about Encoding.

In htacces i added php_value zlib.output_compression Off and nothing. Any ideea how to fix that?

Thanks.

A: 

if your php_value is doing nothing it's likely your PHP install is running in CGI mode (please confirm if not), for php_values to be added in your .htaccess file then PHP needs to be running as an Apache module (DSO). Try using ini_set in your code or modifying your php.ini if you have access to that.

seengee