I have a probelm, i installed it all and on index it show me as not logged in
This is the code that seems to be the probelm.
Im running 3.6.4, if i add the code below in the index file and re-upload it when on the index i get shown as loged out, but the mod works. Can someone check the code and see whats wrong?
Thanks heaps
Code:
Find:
---------
if (fetch_online_status($loggedin))
{
$numbervisible++;
eval('$activeusers .= ", ' . fetch_template('forumhome_loggedinuser') . '";');
}
}
-------
Add After:
-------
while ($spidername = current($spiderlist))
{
if ($spidername > 1) {
$loggedin['musername'] = trim(key($spiderlist)) . "(" . $spidername.")";
}
else
{
$loggedin['musername'] = trim(key($spiderlist));
}
$loggedin['userid'] = 0;
eval('$activeusers .= ", ' . fetch_template('forumhome_loggedinuser') . '";');
next($spiderlist);
}