|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-01-10 16:45 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 08 20:00:01 2025 UTC |
Description: ------------ This bug was reported and fixed in 2002 i think, but in PHP 5.1.1 + Apache 2 i'm getting this message "Warning: ob_start() [ref.outcontrol]: output handler 'ob_gzhandler' cannot be used twice" In many of the pages of PHPNuke framework I'm sure about the existence of output_handler = and zlib.output_compression = Off directives in the PHP configuration file. I'm not using CGI, i'm using the DLL for Apache component Reproduce code: --------------- For example in the \html\includes\page_header.php file in PHPNuke framework The lines are as follows if ( extension_loaded('zlib') ) { ob_start('ob_gzhandler'); } Actual result: -------------- Warning: ob_start() [ref.outcontrol]: output handler 'ob_gzhandler' cannot be used twice in C:\Program Files\Apache Group\Apache2\htdocs\portal\html\includes\page_header.php on line 58