Upgrade to Version 1.4 (from 1.3)
in functions.php and function dooutput(), find:
PHP Code:
global $pagestarttime,$query_count,$showqueries,$querytime,$DB_site,$microstats;
replace it with:
PHP Code:
global $pagestarttime,$query_count,$showqueries,$querytime,$DB_site,$microstats,$HTTP_ACCEPT_ENCODING;
still in dooutput(), find:
PHP Code:
if (strstr($HTTP_SERVER_VARS["HTTP_ACCEPT_ENCODING"], "gzip")) {
replace it with:
PHP Code:
if (strpos(" ".$HTTP_ACCEPT_ENCODING,"gzip")) {
now it will look to see if the GZIP is enabled everywhere..