@all with the timezoneproblem of this hack:
i am not sure if this changes fix the problem, because our server is in the same timezone as the members and so i can't test it.
please test the changes for me.
find:
PHP Code:
$todayusers=$DB_site->query("SELECT userid, username, usergroupid, lastactivity, invisible FROM user
WHERE lastactivity > " . mktime(0,0,0,date("m"),date("d"),date("Y")) . "
ORDER BY username");
and replace with:
PHP Code:
$unixtoday = mktime(0,0,0,date("m"),date("d"),date("Y"));
$unixtoday = $timeoffset * 3600 + $unixtoday;
$numbertodayonlinerecord = $DB_site->query("SELECT COUNT(*) AS count FROM user
WHERE lastactivity > " . $unixtoday . "
ORDER BY username");
$numbertodayonlinerecord = $numbertodayonlinerecord[count];
$unixtoday = $bbuserinfo[timeoffset] * 3600 + $unixtoday;
$todayusers=$DB_site->query("SELECT userid,username,usergroupid,lastactivity,invisible,lastpost FROM user
WHERE lastactivity > " . $unixtoday . "
ORDER BY username");
and find:
PHP Code:
if ((int)$maxusers[2] <= $numbertodayonline) {
$time = time();
$maxloggedin = $maxusers[0] . " " . $maxusers[1] . " $numbertodayonline " . $time;
$DB_site->query("UPDATE template SET template='$maxloggedin' WHERE title='maxloggedin'");
$maxusers[2] = $numbertodayonline;
$maxusers[3] = $time;
}
replace with:
PHP Code:
if ((int)$maxusers[2] <= $numbertodayonlinerecord) {
$time = time();
$maxloggedin = $maxusers[0] . " " . $maxusers[1] . " $numbertodayonlinerecord " . $time;
$DB_site->query("UPDATE template SET template='$maxloggedin' WHERE title='maxloggedin'");
$maxusers[2] = $numbertodayonlinerecord;
$maxusers[3] = $time;
}