ID:               35936
 Updated by:       [EMAIL PROTECTED]
 Reported By:      sBoisvert at bryxal dot ca
-Status:           Open
+Status:           Verified
 Bug Type:         Zlib Related
 Operating System: XP
 PHP Version:      5.1.1


Previous Comments:
------------------------------------------------------------------------

[2006-04-15 21:29:36] [EMAIL PROTECTED]

Looks like the docs are wrong and this option is actually not
PHP_INI_ALL, but PHP_INI_SYSTEM|PHP_INI_PERDIR.
This was accidentally changed with this patch:
http://cvs.php.net/viewcvs.cgi/php-src/ext/zlib/zlib.c?r1=1.136&r2=1.137

------------------------------------------------------------------------

[2006-01-09 15:00:46] [EMAIL PROTECTED]

php_enable_output_compression() is called only in PHP_RINIT_FUNCTION()
and not in OnUpdate_zlib_output_compression().

------------------------------------------------------------------------

[2006-01-09 01:17:56] sBoisvert at bryxal dot ca

Description:
------------
This has either not been fixed or crept back in. (Bug #17299)

The documentation on 

http://ca3.php.net/manual/en/ref.zlib.php#ini.zlib.output-compression

it states

zlib.output_compression  boolean/integer

 .... In runtime, it can be set only before sending any output. 

but any attempts to set 

ini_set("zlib.output_compression", "on");
ini_set("zlib.output_compression_level", 5);

will NOT compress data before sending it. Either this is a bug that
slipped in lately or a documentation problem. 

A comment has already been left by someone on this page commenting on
his inability to make this work.

Thank you

Reproduce code:
---------------
ini_set("zlib.output_compression", "on");
ini_set("zlib.output_compression_level", 5);
echo(ini_get("zlib.output_compression"));

Expected result:
----------------
compressed:
on

Actual result:
--------------
uncompressed:
on


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=35936&edit=1

Reply via email to