It appears only the admin is getting a timeout when using the chat with three or more people in the room.
Here's my parameters:
require_once dirname(__FILE__)."/../src/phpfreechat.class.php";
$params = array();
$params["serverid"] = md5(__FILE__); // calculate a unique id for this chat
$params["title"] = "Personal Chat";
$params["channels"] = array("Main Room");
$params["theme"] = "phpbb2";
$params['time_offset'] = 60*60*17; // offset in seconds
$params['timeout'] = 60000;
$params["admins"]=array("Administrator"=>"Password1");
$params['skip_proxies'] = array( "censor" );
$chat = new phpFreeChat($params);
When the admin is identified they keep getting a timeout error and are logged out of the room. Nobody else seems to be affected. Is there something incorrect in the settings? I would think that the admin would be the last person to get a timeout.