Log in

View Full Version : Who's Online List


philr
12-09-2008, 09:51 PM
Hi

I am using Vbulleting 3.7.4 and I have installed flash chat 5.0.9 and also the flash chat integration. I am unable to see the people who are in the chat room when looking at the WOL list in vbulletin. If members are in the chat room for a long period of time, they get logged out of Vbulletin. I have seen other forums where their WOL list shows that a member is using flash chat? What am I doing wrong, your help in this matter is much appreciated
Phil

Lynne
12-09-2008, 10:16 PM
This really should be a question asked in the modification thread. This is the basic way to add custom locations to your WOL page. You'll need to modify it with the correct code for your modification - again, if you need help with that, you need to ask in the modification thread:

hook online_location_process:
Code:

switch ($filename)
{
case 'mypage.php':
$userinfo['activity'] = 'mypage';
break;
// add more cases here if you have more than one custom page. no need for multiple plugins. one plugin can handle all.
}
hook online_location_unknown
Code:

switch ($userinfo['activity'])
{
case 'mypage':
$userinfo['where'] = '<a href="mypage.php?'.$vbulletin->session->vars[sessionurl].'">My Page</a>';
$userinfo['action'] = "Viewing My Page";
$handled = true;
break;
// add more cases here if you have more than one custom page. no need for multiple plugins. one plugin can handle all.
}

philr
12-10-2008, 01:48 AM
Thanks for the information Lynne, still have issues so i have put it onto the modifiaction thread.