thanks iago. i'm tryin ez chat on a stock Fedora Core 2 / Apache 2.50 imbedded in a cmsimple CMS. Does anyone have any experience with it or know enough PHP to help me?
see:
www.dexter1976.com
The shout box doesn't seem to work an I suspect that its the relative paths set in the code. Nothing displays at all until i make an absolute path pointing to the config and index.php files. Unfortunately, anyone tyring to post to the chat gets sent to the banned list.
The script install instructions are a little hard to understand relative to the path in the config file. It says:
Area 1 is for configuring the location of EzChatBox this should be
relative to the file running the application and should not include
trailing slashes.
<?php
include("/var/www/html/vh07/EzChatBox/config.php");
include("/var/www/html/vh07/EzChatBox/index.php");
?>
The config file looks like this.
####################
# ----------- #
# Configuring #
# ----------- #
# ----------- #
####################
#1 Here is a sample of the default config file.
1 // EzChatBox location (no trailing slash)
$EZChat_location = "EzChatBox";
2 // Set the page titles
$EZChat_title = "EZChatBox - Alpha Release";
$EZChat_ban_title = "EZChatBox - Ban List";
$EZChat_up_title = "EZChatBox - Processing Message...";
3 // Chatbox image title
$EZChat_image = "logo.jpg";
$EZChat_inc_tagline = "No";i ///CHANGED THIS BECAUSE ITS IMBEDDED IN A CMS SYSTEM
$EZChat_tagline = "The easy way to chat";
4 // If EzChatBox is on a page of it's own this value
// must be Yes. If it is included then the value should be No.
// This decides whether to add HTML content at the top of
// the page.
5 // Chatbox refresh page settings
$EZChat_refresh = "Yes";
$EZChat_time = "30";
6 // Chatbox upload refresh timings
$EZChat_uptime = "3";
7 // Admin email (for banned users to plead case)
$EZChat_email = "email@yourserver.com";
8 //files
$EZChat_file_ban = "banned.ban";
$EZChat_file_ips = "iplist.html";
$EZChat_file_content = "dsp_chat_content.php";
$EZChat_ban_relocate = "dsp_ban.php";