Frage zu ChatBox Mod
Verfasst: 18.11.2004 22:38
Hi,
ich bin dabei mir diesen Mod einzubauen:
http://smartor.is-root.com/viewtopic.php?t=1805
Kann mir jemand sagen, was mit diesen Punkten gemeint ist?
ich bin dabei mir diesen Mod einzubauen:
http://smartor.is-root.com/viewtopic.php?t=1805
Kann mir jemand sagen, was mit diesen Punkten gemeint ist?
#
#-----[ COPY ]--------------------------------------------
#
copy chatbox_front.php to chatbox_front.php
copy chatbox_mod/*.* to chatbox_mod/
#
#-----[ SQL ]---------------------------------------------
# Run these folloing queries manually or run chatbox_db_install.php once
# Afterthat please remove your chatbox_db_install.php immediately
#
CREATE TABLE phpbb_chatbox (
id int(11) NOT NULL auto_increment,
name varchar(99) NOT NULL,
msg varchar(255) NOT NULL,
timestamp int(10) unsigned NOT NULL,
PRIMARY KEY (id));
CREATE TABLE phpbb_chatbox_session (
username varchar(99) NOT NULL,
lastactive int(10) DEFAULT '0' NOT NULL,
laststatus varchar( 8 ) NOT NULL,
UNIQUE username (username));