FlashChat version 5.0.1

cinneke

New Member
FlashChat version 5.0.1

Have fun :-):

Demo:
Code:
[url=http://www.tufat.com/demo/chat/stateless/index.php]FlashChat v5.0.0[/url]

<-- REMOVED -->

do not upgrade version vbulletin you get errors! take a clean install!!
 
I removed the links as you didnt upload attachment!!

Media file sharing links are fine as long as they are mirrors only!!
 
Feckie said:
I have 5.0.2 and it is still bugged

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:

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:
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.
 
Back
Top