Log in

View Full Version : Help with who's online?!


Weasel
06-15-2002, 02:11 PM
I just installed PluhNews and want to get rid of the "Unknown Location" in the online users page without installing that long hack. So I just went into online.php and tried these:


case 'PluhNews':
$userinfo[where] = "Viewing Main News";
break;
case 'pluhnews':
$userinfo[where] = "Viewing Main News";
break;
case 'pluhnews.php':
$userinfo[where] = "Viewing Main News";
break;


However, NONE of them work, it still says unknown location. Any ideas for a fix? :dead:

Chris M
06-15-2002, 03:33 PM
OPEN ONLINE.PHP from your forum directory.

FIND:

case 'gallery':
$userinfo[where] = "Viewing Picture <a href='gallery.php?s=$session[sessionhash]'>Gallery</a>";
break;

AFTER IT ADD:

case 'rules':
$userinfo[where] = "Viewing <a href='pluhnews.php?s=$session[sessionhash]'>Main News</a>";
break;


Step 2:
-------

FIND:

case 'gallery.php':
$userinfo[activity] = 'gallery';
break;

AFTER IT ADD:

case 'pluhnews.php':
$userinfo[activity] = 'pluhnews';
break;


SAVE AND UPLOAD ONLINE.PHP
====

Satan