When I installed it using vbhacker, it was only showing MY name in any given thread. I finally figured out why.
in showthread.php, this code:
PHP Code:
// Get users browsing this forum
if ($showforumusers) {
$datecut = $ourtimenow - $cookietimeout;
$browsers = '';
$comma = '';
$threadusers = $DB_site->query("
SELECT username,invisible,userid
FROM user
WHERE inthread=$thread[threadid]
AND lastactivity>$datecut
AND lastvisit<>lastactivity
");
while ($threaduser = $DB_site->fetch_array($threadusers)) {
if ((!$threaduser['invisible'] or $bbuserinfo['usergroupid'] == 6) and $bbuserinfo['userid'] != $threaduser['userid']) {
$userid = $threaduser['userid'];
$username = $threaduser['username'];
if ($threaduser['invisible'] == 1) {
$invisibleuser = '*';
} else {
$invisibleuser = '';
}
eval("\$browsers .= \"".$comma.gettemplate('forumdisplay_loggedinuser')."\";");
$comma = ', ';
}
}
if ((!$bbuserinfo['invisible'] or $bbuserinfo['usergroupid'] == 6) and $bbuserinfo['userid'] <> 0) {
$userid = $bbuserinfo['userid'];
$username = $bbuserinfo['username'];
if ($bbuserinfo['invisible'] == 1) {
$invisibleuser = '*';
} else {
$invisibleuser = '';
}
eval("\$browsers .= \"".$comma.gettemplate('forumdisplay_loggedinuser')."\";");
}
if ($browsers) {
eval("\$onlineusers = \"".gettemplate('showthread_browsing')."\";");
}
}
was not being added to the file. This code:
PHP Code:
updateuserforum($thread['forumid'], $thread['threadid']);
WAS added to the file though. Once I pasted in the missing code block, everything worked fine.
Amy