I know how to add who's online locations to any page within the forum directory, but I would also like to add them to my main homepage index.php and other non-forum pages.
In online.php, at here:
PHP Code:
case 'http://www.mysite.com/multimedia.php':
$userinfo[activity] = 'multimedia';
break;
This code doesn't work, because the case only takes filenames without the added URL prefix.
In example, it will work with this:
PHP Code:
case 'multimedia.php':
$userinfo[activity] = 'multimedia';
break;
But is referring to the non-existant forums/multimedia.php file.
So how might I be able to fix this?