
und hier die constants.php:
http://www.musikmobil.info/constants.txt
Code: Alles auswählen
CREATE TABLE phpbb_notes (
post_id mediumint(8) unsigned NOT NULL auto_increment,
poster_id mediumint(8) NOT NULL DEFAULT '0',
post_subject varchar(60) DEFAULT NULL,
post_text text,
post_time int(11) NOT NULL DEFAULT '0',
bbcode_uid varchar(10) DEFAULT NULL,
bbcode TINYINT(1) DEFAULT '1' NOT NULL,
smilies TINYINT(1) DEFAULT '1' NOT NULL,
acronym TINYINT(1) DEFAULT '1' NOT NULL,
PRIMARY KEY (post_id),
KEY poster_id (poster_id),
KEY post_time (post_time)
) TYPE=MyISAM;