For the first error:
Near the start of mainfile.php find:
Code:
$phpver = phpversion();
if ($phpver >= '4.0.4pl1' && strstr($HTTP_USER_AGENT,'compatible')) {
if (extension_loaded('zlib')) {
ob_end_clean();
ob_start('ob_gzhandler');
}
} else if ($phpver > '4.0') {
change to:
Code:
$phpver = phpversion();
if ($phpver >= '4.0.4pl1')
{
ob_start('ob_gzhandler');
}else if ($phpver > '4.0') {
------------------------------------------
for the second one:
In your php.ini file find:
allow_call_time_pass_reference
And make sure it looks like this:
allow_call_time_pass_reference = On
Without any semi-colons in front of it.