Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   TBDev (http://www.bvlist.com/forumdisplay.php?f=20)
-   -   Problem? (http://www.bvlist.com/showthread.php?t=1239)

Viruzzz 22nd October 2008 20:27

Problem?
 
in all pages i show me this warning:
Code:

Warning: ob_start() [ref.outcontrol]: output handler 'ob_gzhandler' conflicts with 'zlib output compression' in /home/sites/*******/public_html/torrents/index.php on line 2
Code:

ob_start("ob_gzhandler");
what is it? i have need this (ob_start) for tracker, i delete it? or ...

thx

djlee 23rd October 2008 00:33

that generally means you have compression enabled in php.ini by default so every file that is sent is compressed.

either comment out all lines to do with ob_start etc or disable the compression by default (this may be the better option)

to disable default use one of the two methods below:

.htaccess
Code:

php_flag zlib.output_compression Off
(php_flag may need to be renamed to PHP_value on some rare server setups)

php.ini
Code:

zlib.output_compression = Off


All times are GMT +2. The time now is 04:17.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.