Prob nach Installation!

Eine Neuinstallation von phpBB 2.0 wird auf phpBB.de nicht mehr unterstützt.
Siehe auch Entwicklungs-Ende von phpBB 2.0 - Auswirkungen auf phpBB.de
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.1, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.

Eine Neuinstallation von phpBB 2.0 wird auf phpBB.de nicht mehr unterstützt.
Siehe auch Entwicklungs-Ende von phpBB 2.0 - Auswirkungen auf phpBB.de
Benutzeravatar
Crazy Bird
Mitglied
Beiträge: 18
Registriert: 08.09.2004 14:51

Beitrag von Crazy Bird »

also mir fehlen:
vote_results
vote_voters
und
;-)
words
Acid
Ehrenadmin
Beiträge: 12195
Registriert: 26.04.2001 02:00
Wohnort: Berlin

Beitrag 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).
Benutzeravatar
Crazy Bird
Mitglied
Beiträge: 18
Registriert: 08.09.2004 14:51

Beitrag von Crazy Bird »

danke! Es funktioniert! *freu* :D
Benutzeravatar
Crazy Bird
Mitglied
Beiträge: 18
Registriert: 08.09.2004 14:51

Beitrag 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
Christian_W
Ehemaliges Teammitglied
Beiträge: 5703
Registriert: 26.02.2004 00:09

Beitrag von Christian_W »

Ließ Dir das mal durch:
KB:login

Gruß Christian
---
Gesperrt

Zurück zu „phpBB 2.0: Installation und Update“