My goal is not to have the chat open to the world.
How do you login as admin?
Can you set up user accounts with passwords when you do ?
I installed via simple script--probably dumb idea.
My index.php so far with the changes I made:
<?php
require_once dirname(__FILE__)."/src/phpfreechat.class.php";
$params = array();
$params["title"] = "Quick chat";
$params["isadmin"] = false; // just for debug

$params["serverid"] = md5(__FILE__); // calculate a unique id for this chat
$params['admins'] = array('u_not_really_this' => 'p_not_really_this');
//$params["debug"] = true;
$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>phpFreeChat- Sources Index</title>
<link rel="stylesheet" title="classic" type="text/css" href="style/generic.css" />
<link rel="stylesheet" title="classic" type="text/css" href="style/header.css" />
<link rel="stylesheet" title="classic" type="text/css" href="style/footer.css" />
<link rel="stylesheet" title="classic" type="text/css" href="style/menu.css" />
<link rel="stylesheet" title="classic" type="text/css" href="style/content.css" />
</head>
<body>
<div class="header">
<h1>Chat Room Hockey Girl 21</h1>
<img alt="logo bulle" src="style/bulle.gif" class="logo2" />
</div>
<div class="content">
<?php $chat->printChat(); ?>
</div>
</body></html>