The chatroom name is N, not Netro. the title is still. The title is still Quick chat, not NetroPlayer Chat like I defined. and the default theme is still displaying as though it were the old theme that came with install even though http://www.netroplayer.com/chat/themes/ ... ground.gif is no where close to what's currently being displayed. Where is this blue background stored and where can I replace it at.
Any help would be greatly apprieciated.
Gerry
<?php
require_once dirname(__FILE__)."/src/phpfreechat.class.php";
$params = array();
$params["fistisadmin"] = "false";
$params["nick"] = ""; // setup the intitial nickname
$params['channels'] = array('Netro');
$params["title"] = "NetroPlayer Chat";
$params["theme"] = "default";
$params["shownotice"] = "3";
$params["isadmin"] = false; // just for debug

$params["serverid"] = md5(__FILE__); // calculate a unique id for this chat
//$params["debug"] = false;
$chat = new phpFreeChat( $params );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>NetroPlayer Chat</title>
</head>
<body>
<div class="content">
<?php $chat->printChat(); ?>
</div>
</body></html>