Got it working fine with Vbulletin 3.7.2 and FlashChat 5.03.
If you're getting a blank screen on installation of FlashChat, after step 2, here's a fix I found on the support forums... open
/chat/install.php and at the end change:
Code:
if( $_SESSION['step_install'] > 2 )
{
include './inc/common.php';
include './inc/config.php'; // FlashChat config
}
include './install_files/step_'.$_SESSION['step_install'].'.php';
?>
to:
Code:
if( $_SESSION['step_install'] > 2 )
{
include './inc/common.php';
include './inc/config.php'; // FlashChat config
}
//FIX BY VERONICA
if($_SESSION['step_install']=="3")$_SESSION['step_install']="3.5";
$step=$_SESSION['step_install'];
//END-OF-FIX
include './install_files/step_'.$_SESSION['step_install'].'.php';
?>
This will get Flashchat installed and finds the database config from Vbulletin if you select 3.6.
This modifcation's instructions mention editing Config.php from FlashChat. I found one in /chat/inc, but the line we're told to edit is not there. To fix this, I simply renamed the file included with this modification (
\chat\inc\cmses\vbulletin37CMS.php) to
vbulletin36CMS.php and overwrote the existing 3.6 file, that I did not need. It worked fine after this.
Also, the code from the instructions for this mod mentioned in Step 3 of the installation are not there anymore either so I just ignored it.