NTLDR,
Thanks
I updated online.php
replaced
PHP Code:
case 'gallery':
$userinfo[where] = "Viewing Picture <a href='gallery.php?s=$session[sessionhash]'>Gallery</a>";
break;
by
PHP Code:
case 'gallery':
$userinfo[where] = "Viewing Picture <a href='gallery.php?s=$session[sessionhash]'>Gallery</a>";
break;
case 'portal':
$userinfo[where] = "Viewing <a href='vbindex.php?s=$session[sessionhash]'>The Portal</a>";
break;
and replaced
PHP Code:
case '/robots.txt':
$userinfo[activity] = 'spider';
break;
by
PHP Code:
case '/robots.txt':
$userinfo[activity] = 'spider';
break;
case 'vbindex.php':
$userinfo[activity] = 'portal';
break;
all seem to work.