Have it working again.
On top of the /admin/init.php file just below <?php i have added the folowing code:
PHP Code:
error_reporting(E_ALL & ~E_DEPRECATED);
ini_set('set_magic_quotes_runtime', 0);
I removed the folowing code out of the /inc/common.php file:
PHP Code:
//Bots future enabling
if($GLOBALS['fc_config']['enableBots'])
{
require_once( INC_DIR.'../bot/bot_class.php' );
$GLOBALS['fc_config']['bot'] =& new Bot();
// $bot = new Bot();
// $GLOBALS['fc_config']['bot'] = & $bot;
}
And Flashchat worked again.