Seite 2 von 2

Verfasst: 29.09.2004 15:31
von Crazy Bird
also mir fehlen:
vote_results
vote_voters
und
;-)
words

Verfasst: 30.09.2004 13:58
von Acid
CREATE TABLE phpbb_vote_results (
vote_id mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
vote_option_id tinyint(4) UNSIGNED NOT NULL DEFAULT '0',
vote_option_text varchar(255) NOT NULL,
vote_result int(11) NOT NULL DEFAULT '0',
KEY vote_option_id (vote_option_id),
KEY vote_id (vote_id)
);
CREATE TABLE phpbb_vote_voters (
vote_id mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
vote_user_id mediumint(8) NOT NULL DEFAULT '0',
vote_user_ip char(8) NOT NULL,
KEY vote_id (vote_id),
KEY vote_user_id (vote_user_id),
KEY vote_user_ip (vote_user_ip)
);
CREATE TABLE phpbb_words (
word_id mediumint(8) UNSIGNED NOT NULL auto_increment,
word char(100) NOT NULL,
replacement char(100) NOT NULL,
PRIMARY KEY (word_id)
);
..führe diese Queries via link:phpmyadmin aus (auf Prefix achten).

Verfasst: 30.09.2004 14:20
von Crazy Bird
danke! Es funktioniert! *freu* :D

Verfasst: 01.10.2004 13:20
von Crazy Bird
Jetzt hab ich aber das Problem, dass wenn ich mich einlogegn will, das Ding ewig lange lädt und ich dann nur diese Fehlermeldung bekomme:

220 Willkommen. FTP Server ready. 500 GET not understood 500 ACCEPT: not understood 500 REFERER: not understood 500 ACCEPT-LANGUAGE: not understood 500 ACCEPT-ENCODING: not understood 500 USER-AGENT: not understood 500 HOST: not understood 500 CONNECTION: not understood 500 CACHE-CONTROL: not understood 500 COOKIE: not understood 421 Idle Timeout (120 seconds): closing control connection

Und wenn ich eine Antwort erstellen will, kommt der folgende Fehler:

Template->loadfile(): File /usr/export/www/vhosts/funnetwork/hosting/dsaster/forum/templates/subSilver/posting_topic_review.tpl for handle reviewbody is empty

Verfasst: 01.10.2004 13:56
von Christian_W
Ließ Dir das mal durch:
KB:login

Gruß Christian