Quote:
Originally posted by Mystics
[...]"Most users ever online on a day".
[...]Greetz,
Mystics
|
Excuse me. I don't understand how this hack make the difference between storing into db the maxusers of the original VB index.php and the maxusers for the entire day.
It seems these two numbers are stored in the same field of the same table, and the second overwrites the first one.
Mystics, please, could you explain better those steps:
PHP Code:
if ((int)$maxusers[0] <= $totalonline) {
$time = time();
$maxloggedin = "$totalonline " . $time . " " . $maxusers[2] . " " . $maxusers[3];
$DB_site->query("UPDATE template SET template='$maxloggedin' WHERE title='maxloggedin'");
$maxusers[0] = $totalonline;
$maxusers[1] = $time;
}
[...]
[...]
[...]
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;
}
Thanks a lot.
Bye