Hi,
In the latest Firefox 2.0 (RC3) the phpFreeChat is blank on first load. If you refresh the window it is ok.
Using latest SVN version.
This does not happen on the phpfreechat.net demo.
So here is my index file:
<?php
require_once dirname(__FILE__)."/src/phpfreechat.class.php";
$params = array();
$params["nick"] = $_GET['nick'];
$params["channels"] = array($_GET['channel']);
$params["frozen_channels"] = $params["channels"];
$params["frozen_nick"] = true;
$params["title"] = "Chat";
$params["serverid"] = md5(__FILE__); // calculate a unique id for this chat
$params["data_private_path"] = "/dana/data/onm/phpfreechat_data";
$params["btn_sh_whosonline"] = false;
$params["btn_sh_smileys"] = false;
$params["showsmileys"] = false;
$params["max_msg"] = 0;
$params["height"] = "190px";
$chat = new phpFreeChat( $params );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Chat</title>
<?php $chat->printJavascript(); ?>
<?php $chat->printStyle(); ?>
</head>
<body style='background-color: #663333'>
<div class="content">
<?php $chat->printChat(); ?>
</div>
</body>
</html>