>>
Site Map
>>
Forums
>>
Post Installation Help
Forum module - topics in forum:
Post Installation Help - Help with problems after installation.
GZIP(?) problem in PHPNuke 7.8
Hello all -
Just got finished installing NUke 7.8 and get the following error:
Warning: ob_start(): output handler 'ob_gzhandler' conflicts with 'zlib output compression' in /home/u3/goldkey/html/nuke/html/mainfile.php on line 44
Due to this I am unable to access the Preferences menu in the Admin area.
Looking at the mainfile.php in that general area I have this:
$phpver = phpversion();
if ($phpver < '4.1.0') {
$_GET = $HTTP_GET_VARS;
$_POST = $HTTP_POST_VARS;
$_SERVER = $HTTP_SERVER_VARS;
}
if ($phpver >= '4.0.4pl1' && strstr($_SERVER["HTTP_USER_AGENT"],'compatible')) {
if (extension_loaded('zlib')) {
ob_end_clean();
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');
}
Any help would be appreciated.
Okay, fixed that... GZip was enabled already, so I commented out the line 44. Now I have a different issue, when I click on Preferences I get a completely white screen. HAILP! as Penelope Pitstop used to say