Hi everyone, I want to deploy phpFreeChat on my website but all i see in my browser is “Chat loading ... Please wait” and there’s nothing happen. I am using
$config[‘enable_query_strings’] = TRUE;, I guess this is the reason why i only see that stuff in my site.
Here’s the code in one of my views file where i require phpFreeChat.
<?php
require_once “/src/phpfreechat.class.php”;
$params[“serverid”] = md5(__FILE__); // calculate a unique id for this chat
$chat = new phpFreeChat($params);
$chat->printChat(); //prints the chatbox
?>