maimiti
Joined: 16 Sep 2003 Posts: 11
|
Posted: Mon Feb 02, 2004 12:54 pm Post subject: What does this error mean? |
|
|
I've exported my MySql database from one host and imported it to another. Now I get this error message:
Code: | Warning: ob_start(): output handler 'ob_gzhandler' conflicts with 'zlib output compression' in /export/vol2/unix/a/alm/public_html/blue/blog/b2-include/b2functions.php on line 599 |
All data from the database shows on the page so why do I get this error? Line 594 through 607 has this code:
Code: | function gzip_compression() {
global $gzip_compressed;
if (!$gzip_compressed) {
$phpver = phpversion(); //start gzip compression
if($phpver >= "4.0.4pl1") {
if(extension_loaded("zlib")) { ob_start("ob_gzhandler"); }
} else if($phpver > "4.0") {
if(strstr($HTTP_SERVER_VARS['HTTP_ACCEPT_ENCODING'], 'gzip')) {
if(extension_loaded("zlib")) { $do_gzip_compress = TRUE; ob_start(); ob_implicit_flush(0); header("Content-Encoding: gzip"); }
}
} //end gzip compression - that piece of script courtesy of the phpBB dev team
$gzip_compressed=1;
}
} |
So what should I do? |
|