+-------------------+
| W e b C h a t |
+-------------------+
1. Features:
WebChat is an chat application for JavaScript compatible web browsers.
- multiple rooms.
- no browser flicker between message translation.
- web based room management.
- private messages.
- emotions and text formating.
2. Requires:
Apache WebServer
PHP3/4
MySQL
Web Browser with JavaScript support
3. Install
3.1 Configure:
You need to create a MySQL database and to grant access to it.
This can be done from command line or web interface (ex. PHPMyAdmin)
create database chat;
grant all on chat.* to chat_user@localhost identified by 'yourpass';
Edit file defines.php and set database access:
var $Database = "chat";
var $User = "chat_user";
var $Password = "yourpass";
Set language of chat:
include ('./language/english.php');
3.2 Database structure & chat rooms:
Open install.php from your browser
( like
http://yourserver/path/to/webchat/install.php )
This will try to create database structure
4. Edit chat rooms:
Go to
http://yourserver/path/to/webchat/admin.
Login yourself with username and passord added at 2.2
Add / modify / remove chat rooms.
5. BUGS:
Please reports any bug at
dt@webdev.ro
6. TODO:
- Add private rooms.
- Register users.