If anyone is interested. Here's a fix for the Who's Online "Unknown Location" issue with VB 3.81+ w/ FC5
This will register the pages correctly!!!
************************************************** ***********
Add the following code BELOW the last ?> in the file /forums/chat/getxml.php
************************************************** ***********
Code:
<?php
// #################### DEFINE WHOS ONLINE VARIABLES - USING FLASHCHAT #######################
error_reporting(E_ALL & ~E_NOTICE);
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'getxml.php');
define('VBA_PORTAL', true);
define('VBA_SCRIPT', 'CMPS');
//Define your forum path
$forumpath = 'c:/Inetpub/path/forums';
//example = '/home/msxorg/public_html/forum' OR 'c:/Inetpub/site/forums'
chdir($forumpath);
$phrasegroups = array();
$globaltemplates = array();
$actiontemplates = array();
$specialtemplates = array();
require_once('./includes/vba_cmps_include_template.php');
require_once('./global.php');
exec_shut_down();
?>
************************************************** ***********
Add the following code BELOW the last ?> in the file /forums/chat/ajax_logout.php
************************************************** ***********
Code:
<?php
// #################### DEFINE WHOS ONLINE VARIABLES - LOGGED OUT OF FLASHCHAT #######################
error_reporting(E_ALL & ~E_NOTICE);
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'ajax_logout.php');
define('VBA_PORTAL', true);
define('VBA_SCRIPT', 'CMPS');
//Define your forum path
$forumpath = 'c:/Inetpub/path/forums';
//example = '/home/msxorg/public_html/forum' OR 'c:/Inetpub/site/forums'
chdir($forumpath);
$phrasegroups = array();
$globaltemplates = array();
$actiontemplates = array();
$specialtemplates = array();
require_once('./includes/vba_cmps_include_template.php');
require_once('./global.php');
exec_shut_down();
?>
Be sure to
EDIT the PATH in each. You can safely remove the vBAdvanced items if you wish.
I've tested this and it DOES work!!!