First of all, thanks for this great free software!
Well, i successfully tested the chatsoftware on my home windows pc.
Everything works fine so i decided to install it to my linux server.
And on that point my problems began.
In every case the chat tell me: "you must be connected to send messages".
I tried everything.
Changing rights in the data-folder or execution-rights in the src-folder.
Nothing happens.
I tried to get some informations in this forum by searching, but all hints i found had no effect.
Actually i have no idea how to get the chat working on my server.
Here are my settings in the index.php:
- Code: Select all
require_once dirname(__FILE__)."/src/phpfreechat.class.php";
$params = array();
$params["serverid"] = md5(__FILE__); // calculate a unique id for this chat
$params["language"] = "de_DE-informal";
$params["height"] = "540px";
$params["title"] = "Testversion";
$params["channels"] = array("Kaffee-Bar");
$params["nick"] = "guest".rand(1,1000); // setup the intitial nickname
$chat = new phpFreeChat( $params );
"isadmin" or not has no effect.
I hope for some help.