If anyone uses the seperate page to show their today online users, this is what they need in that pages php file:
Code:
<?php
error_reporting(7);
$templatesused = 'error_whosonlinedisabled,maxloggedin,whowasonline_todayloggedinusers,whowasonline_todayloggedinuser,whosonline_legend,whowasonline';
$loadmaxusers=1;
require('./global.php');
if (!$WOLenable) {
eval("standarderror(\"".gettemplate("error_whosonlinedisabled")."\");");
}
$permissions = getpermissions(0,-1,$bbuserinfo['usergroupid']);
$usergroupdef = $permissions;
if (!$usergroupdef['canwhosonline']) {
show_nopermission();
}
$forummoderators=$DB_site->query('SELECT user.userid,user.username,moderator.forumid
FROM moderator
LEFT JOIN user
ON (moderator.userid=user.userid)
ORDER BY user.username');
while ($moderator=$DB_site->fetch_array($forummoderators)) {
$imodcache["$moderator[forumid]"][] = $moderator;
$mod["$moderator[userid]"] = 1;
}
$DB_site->free_result($forummoderators);
unset($moderator);
$maxusers=explode(" ", gettemplate('maxloggedin',0,0));
// today online hack begin
if ((int)$maxusers[0] <= $totalonline) {
$time = time();
$maxloggedin = "$totalonline " . $time . " " . $maxusers[2] . " " . $maxusers[3];
$maxusers[0] = $totalonline;
$maxusers[1] = $time;
}
$todayloggedinusers = "";
$numbertodayonline = 0;
$numbertodayonlineinvisible = 0;
$numbertodayonline = 0;
$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");
while ($todayuser=$DB_site->fetch_array($todayusers)) {
$numbertodayonline++;
$invisibleuser = '';
$userid = $todayuser['userid'];
$lastactivetime = vbdate($timeformat, $todayuser[lastactivity]);
if ($todayuser['invisible']==1 and $bbuserinfo['usergroupid']!=6) {
$numbertodayonlineinvisible++;
continue;
}
if ($todayuser['invisible'] == 1) { // Invisible User but show to Admin
$invisibleuser = '*';
}
if ($todayuser['usergroupid'] == 6 and $highlightadmin) {
$username = "<FONT COLOR=#FF0000>$todayuser[username]</FONT>";
} else if (($todayuser['usergroupid'] == 5) and $highlightadmin) {
$username = "<FONT COLOR=#FF5501>$todayuser[username]</FONT>";
} else if (($todayuser['usergroupid'] == 7) and $highlightadmin) {
$username = "<FONT COLOR=#A46F0A>$todayuser[username]</FONT>";
} else if (($todayuser['usergroupid'] == 14) and $highlightadmin) {
$username = "<FONT COLOR=#A46F0A>$todayuser[username]</FONT>";
} else if (($todayuser['usergroupid'] == 10)) {
$username = "<FONT COLOR=#00CC00>$todayuser[username]</FONT>";
} else if (($todayuser['usergroupid'] == 13)) {
$username = "<FONT COLOR=#00CC00>$todayuser[username]</FONT>";
} else if (($todayuser['usergroupid'] == 9)) {
$username = "<FONT COLOR=#0945A9>$todayuser[username]</FONT>";
} else if (($todayuser['usergroupid'] == 8)) {
$username = "<FONT COLOR=#5409A9>$todayuser[username]</FONT>";
} else if (($todayuser['usergroupid'] == 2)) {
$username = "<FONT COLOR=#666666>$todayuser[username]</FONT>";
} else {
$username = $todayuser['username'];
}
if (!$todayloggedinuser) {
eval("\$todayloggedinuser = \"".gettemplate('whowasonline_todayloggedinuser')."\";");
} else {
eval("\$todayloggedinuser .= \", ".gettemplate('whowasonline_todayloggedinuser')."\";");
}
}
$DB_site->free_result($todayusers);
if ($bbuserinfo[usergroupid] == 6) {
$todayonline = $numbertodayonline;
} else {
$todayonline = $numbertodayonline - $numbertodayonlineinvisible;
}
if ((int)$maxusers[2] <= $numbertodayonline) {
$time = time();
$maxloggedin = $maxusers[0] . " " . $maxusers[1] . " $numbertodayonline " . $time;
$maxusers[2] = $numbertodayonline;
$maxusers[3] = $time;
}
$todayrecordusers = $maxusers[2];
$todayrecorddate = vbdate($dateformat,$maxusers[3]);
eval("\$todayloggedinusers = \"".gettemplate('whowasonline_todayloggedinusers')."\";");
if ($WOLrefresh) {
$metarefresh = "<META HTTP-EQUIV=\"refresh\" CONTENT=\"$WOLrefresh; URL=onlinetoday.php?s=$session[sessionhash]$formeta\"> ";
}
if ($highlightadmin) {
eval("\$legendtable = \"".gettemplate("whosonline_legend")."\";");
}
eval ("\$tablehead = \"$tablehead\";");
eval("dooutput(\"".gettemplate("whowasonline")."\");");
?>