boardom Forum Index boardom
b2 message board
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

What does this error mean?

 
Post new topic   Reply to topic    boardom Forum Index -> Installation issues
View previous topic :: View next topic  
Author Message
maimiti



Joined: 16 Sep 2003
Posts: 11

PostPosted: Mon Feb 02, 2004 12:54 pm    Post subject: What does this error mean? Reply with quote

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?
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    boardom Forum Index -> Installation issues All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB 2 © 2001, 2002 phpBB Group