Even looking through the code this is just a slick app.
Now to the point, some of my parameters are not working.
I have the following config:
- Code: Select all
require_once "phpfreechat/src/phpfreechat.class.php"; // adjust to your own path
$params["serverid"] = md5(__FILE__); // used to identify the chat
$params["height"] = '200px';
$params["nick"] = iconv("ISO-8859-1", "UTF-8", $_SESSION['username'] );
$params["frozen_nick"] = true;
$params["quit_on_closedwindow"] = true;
$params["title"] = "Cryptnet Comm Channel";
$params["channels"] = array( 'General' );
$params["admins"] = array("Adam" => "password");
$chat = new phpFreeChat($params);
The height, and title params are not working.
Any ideas why? Is this a known bug?