http://www.diorcafe.co.kr/gnuboard4/phpfreechat.php (1.0-beat7) was installed.
Sometimes phpfreechat stop working - no message. I deleted files in ./data/ directory...
then It works .... What is the problem???? too many talks???
--- script for start ---
<?php
include_once("./_common.php");
include_once("$g4[path]/lib/latest.lib.php");
require_once dirname(__FILE__)."/./phpfreechat/src/phpfreechat.class.php";
$params["serverid"] = md5(__FILE__); // calculate a unique id for this chat
$params["title"] = "Chatting Room for DiorCafe.co.kr";
$params["clock"] = false;
$params["nick"] = iconv("euc-kr", "UTF-8", $member[mb_nick] );
$params["theme"] = "blune";
$chat = new phpFreeChat( $params );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.or
g/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>phpFreeChat - diorcafe.co.kr</title>
<?php $chat->printJavascript(); ?>
<?php $chat->printStyle(); ?>
</head>
<body>
<?php $chat->printChat(); ?>
</body>
</html>