The image verification code you entered is incorrect.

Compression of PHP output & output_buffering

To perform compress at the server level under Apache see: How to enable Apache compression with mod_deflate

output_buffering = Off
output_handler =
zlib.output_compression = On

XOR (try this one)

output_buffering = On
output_handler = ob_gzhandler
zlib.output_compression = Off
output_buffering
You can enable output buffering for all PHP files by setting this directive to 'On'. If you wish to limit the size of the buffer to a certain amount, you can use a maximum number of bytes instead of 'On' (i.e. output_buffering=4096). As of PHP 4.3.5, this directive is always Off in PHP-CLI.

One person posted:
"With IIS: If you experience high parse times, try to set output_buffering to On. IIS has had problems with scripts outputting many small pieces of text, and with output_buffering = On, PHP sends the whole page to IIS in one piece."

Ref:
http://www.webperformance.org/compression/php-compress.html


Reply

The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.
More information about formatting options Captcha Image: you will need to recognize the text in it.
Please type in the letters/numbers that are shown in the image above.