here is gumchat v4 alpha
upload zip contents to your hosting,
chmod 0777 all folders in include/gum_tmp,
add this to your database
open include/include_top.php and add your database settings like username, password and database name to it.
Done!
upload zip contents to your hosting,
chmod 0777 all folders in include/gum_tmp,
add this to your database
Code:
-- phpMyAdmin SQL Dump -- version 3.3.9.2 -- http://www.phpmyadmin.net -- -- Host: localhost -- Erstellungszeit: 13. April 2011 um 05:07 -- Server Version: 5.1.56 -- PHP-Version: 5.2.6 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; -- -- Datenbank: `gumchat_chat` -- -- -------------------------------------------------------- -- -- Tabellenstruktur für Tabelle `v4_chat_messages` -- CREATE TABLE IF NOT EXISTS `v4_chat_messages` ( `message_id` int(11) NOT NULL AUTO_INCREMENT, `message_user_id` int(11) NOT NULL, `message_user_name` varchar(50) NOT NULL, `message_to_user_id` int(11) DEFAULT NULL, `message_message` text NOT NULL, `message_color` varchar(10) DEFAULT NULL, `message_room_id` int(11) NOT NULL, `message_time` int(11) NOT NULL, PRIMARY KEY (`message_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Tabellenstruktur für Tabelle `v4_chat_rooms` -- CREATE TABLE IF NOT EXISTS `v4_chat_rooms` ( `room_id` int(11) NOT NULL AUTO_INCREMENT, `room_user_id` int(11) DEFAULT NULL, `room_name` varchar(50) NOT NULL, `room_settings` text, `room_position` int(11) NOT NULL, `room_last_active` int(11) DEFAULT NULL, PRIMARY KEY (`room_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Tabellenstruktur für Tabelle `v4_chat_users` -- CREATE TABLE IF NOT EXISTS `v4_chat_users` ( `user_id` int(11) NOT NULL AUTO_INCREMENT, `user_user_name` varchar(50) NOT NULL, `user_password` varchar(255) NOT NULL, `user_login_key` varchar(255) DEFAULT NULL, `user_first_name` varchar(50) DEFAULT NULL, `user_last_name` varchar(50) DEFAULT NULL, `user_email` varchar(50) DEFAULT NULL, `user_infos` text, `user_country` varchar(10) DEFAULT NULL, `user_settings` text, `user_ip` varchar(100) NOT NULL, `user_ua` varchar(255) NOT NULL, `user_location` varchar(50) DEFAULT NULL, `user_registered` int(11) DEFAULT NULL, `user_last_active` int(11) DEFAULT NULL, PRIMARY KEY (`user_id`), UNIQUE KEY `user_user_name` (`user_user_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Done!
Comment