Skip to content

Commit

Permalink
try to fix problem on specific servers
Browse files Browse the repository at this point in the history
git-svn-id: https://phpfreechat.svn.sourceforge.net/svnroot/phpfreechat/trunk@359 2772adf2-ac07-0410-9d30-e29d8120292e
  • Loading branch information
kerphi committed Mar 16, 2006
1 parent 267368f commit 897218a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions demo/demo21_with_hardcoded_urls.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,18 @@
$params["serverid"] = md5(__FILE__); // calculate a unique id for this chat
$params["title"] = "A chat with a hardcoded urls";
$params["nick"] = "guest"; // setup the intitial nickname

// setup urls
$params["data_public_url"] = "../data/public";
$params["client_script_url"] = "./demo21_with_hardcoded_urls.php";
$params["server_script_url"] = "./demo21_with_hardcoded_urls.php";
$params["themeurl"] = "../themes";
$params["themeurl_default"] = "../themes";

// setup paths
$params["container_type"] = "File";
$params["container_cfg_chat_dir"] = dirname(__FILE__)."/../data/private/chat";

$chat = new phpFreeChat( $params );

?>
Expand Down

0 comments on commit 897218a

Please sign in to comment.