Hello,
Iam using a cms.php which acts like a content managment system.
On top of that file I have:
Code:
define('THIS_SCRIPT', 'cms');
But Iam using mod_rewrite to make nice urls like:
http://www.pagodentreff.de/artikel/blaa.html
The normal url would be (without mod_rewrite):
http://www.pagodentreff.de/diskussio....php?view=blaa
Now everytime a user is on one of the cms' sites ?Who's online? tells me ?unknown location?.
Here's what I tried in functions_online.php
Code:
case 'cms.php':
$userinfo['activity'] = 'cms';
break;
and
Code:
case '/artikel':
$userinfo['activity'] = 'cms';
break;
But none of that worked
Please help me
The following now works if a user is on the cms' frontpage (
http://www.pagodentreff.de/artikel) but it doesn't work if he's on
http://www.pagodentreff.de/artikel/blaa.html
Code:
case 'artikel':
$userinfo['activity'] = 'cms';
break;