Quote:
Originally Posted by Cap'n Steve
Could you tell me what's on line 3319 in includes/adminfunctions.php? It looks like there was an error installing.
|
Code:
$output_handler = @ini_get('output_handler');
The surrounding code:-
Code:
// ############################## Start vbflush ####################################
/**
* Force the output buffers to the browser
*/
function vbflush()
{
static $output_handler = null;
if ($output_handler === null)
{
$output_handler = @ini_get('output_handler');
}
if ($output_handler == 'ob_gzhandler')
{
// forcing a flush with this is very bad
return;
}