MArcomage

Free multiplayer on-line fantasy card game

Please log in

JimmyMethod on 03:24, 15. Feb, 2009
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();
?>
theultramage on 15:29, 20. Feb, 2009
That's not an 'error', that's the index file's code in plain text ...
Could you provide more information, like whether it's still happening, whether something other than google chrome does it, and so on.
DPsycho on 18:29, 20. Feb, 2009
For what it's worth, I've been using Chrome for several months without any complications at this site. Whatever the problem is, it's not strictly a Chrome incompatibility.
theultramage on 21:43, 20. Feb, 2009
It's possible he encountered it during a recent server maintenance.
But that only took a while, so I don't know why he's saying "for the past 2 days"...
JimmyMethod on 15:12, 21. Feb, 2009
It's fine now. It lasted about 4 days, in total. It's weird. I certainly didn't change anything, and it just started working again.