I've been coming across a php error for the last 2 days using Google Chrome.
It doesn't come up from any other browser, nor does it come up if I used the Incognito Window in Chrome.
The error I'm getting:
<?php
// activate output buffering and optional compression
if ( stristr(@$_SERVER["HTTP_ACCEPT_ENCODING"],"gzip") && extension_loaded('zlib') && ini_get('zlib.output_compression') == 0 )
ob_start('ob_gzhandler', 16384);
else
ob_start();
// enable xhtml+xml mode if the client supports it
if ( stristr(@$_SERVER["HTTP_ACCEPT"],"application/xhtml+xml") )
header("Content-type: application/xhtml+xml");
else
header("Content-type: text/html");
require_once("main.php");
ob_end_flush();
?>