I have my original index.php renamed to forums.php.
Hm let me know if I have missed anything...
ACP option: 'forums'
plugin 1:
-location: online_location_process
PHP Code:
if ($filename == 'index.php')
{
$userinfo['activity'] = 'news';
}
plugin 2:
-location: online_location_unknown
PHP Code:
if ($userinfo['activity'] == 'news')
{
$userinfo['action'] = '<a href="index.php">Reading News</a>';
$handled = true;
}
edit: accessing the file via site.com/
index.php works, but via site.com/ doesn't work.