I've gotten this to properly show anything with page=sf_ as "Viewing Shadowflare Content", however we use the plain cmps_index.php file as homepage. It will show anyone on the homepage as also viewing the shadowflare content. Here's my code, perhaps you can tell me what I've done wrong
Code:
if ($loc == '/vb/cmps_index.php?page=sf*' OR $loc == 'cmps_index.php?page=sf*' OR $loc == '/vb/cmps_index.php?page=shadowflare*' OR $loc == 'cmps_index.php?page=shadowflare*')
{
$filename = 'cmps_index.php?page=sf';
}
if ($loc == '/vb/cmps_index.php')
{
$filename = 'cmps_index.php';
}
Code:
if ($filename == 'cmps_index.php?page=sf')
{
$userinfo['activity'] = 'sfcontent';
}
if ($filename == 'cmps_index.php')
{
$userinfo['activity'] = 'portal';
}
Code:
if ($userinfo['activity'] == 'sfcontent')
{
$userinfo['where'] = '';
$userinfo['action'] = "Viewing Shadowflare Content";
$handled = true;
}
if ($userinfo['activity'] == 'portal')
{
$userinfo['where'] = '';
$userinfo['action'] = "Viewing Homepage";
$handled = true;
}