Hello, a few days ago, everything worked just fine, and after some changes i made in the main.php file from the en_US, it didn't worked.
Anyway, i've deleted the old files, delete the cache and logs and all i have is the following code:
require_once("folder/src/phpfreechat.class.php"); // adjust to your own path
$params["serverid"] = md5(__FILE__);
$params["refresh_delay"] = 2000; // 2000ms = 2s
$params["title"]="Some text";
$params["theme_default_path"]="folder/themes";
$params["cmd_path_default"]="folder/src/commands";
$params["focus_on_connect"]=true;
$params["theme"]="phpbb2";
$params["height"]="200px";
$params["max_msg"]=150;
$params["max_displayed_lines"]=300;
$params["shownotice"]=0;
$params["nick"] = iconv("ISO-8859-1", "UTF-8", $SomeNick);
$params["quit_on_closedwindow"]=true;
$params["frozen_nick"]=true;
$params["channels"]=array("Some text");
$params["connect_at_startup"]=true;
$params["display_ping"]=false;
$chatX = new phpFreeChat($params);
and believe me i tried all the f*ing stuff with that $param["channels"] thing, and don't want to start with that channel
If i write /connect, everything's fine, and i enter the default channel with the proper user
What is wrong???