Guter Chat?
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.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
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.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Hallo
Ja, genaueres siehst du auch hier http://www.xr-aachen.de/forum/
Ja, genaueres siehst du auch hier http://www.xr-aachen.de/forum/
Could not query forums information
DEBUG MODE
SQL Error : 1146 Table 'phpbb.phpbb_forums' doesn't exist
SELECT f.*, p.post_time, p.post_username, u.username, u.user_id FROM (( phpbb_forums f LEFT JOIN phpbb_posts p ON p.post_id = f.forum_last_post_id ) LEFT JOIN phpbb_users u ON u.user_id = p.poster_id ) ORDER BY f.cat_id, f.forum_order
Line : 167
File : /home/httpd/vhosts/xr-aachen.de/httpdocs/forum/index.php
- Jan500
- Ehemaliges Teammitglied
- Beiträge: 4199
- Registriert: 01.03.2003 21:32
- Wohnort: Hamburg
- Kontaktdaten:
hi
guck mal mit phpmyadmin ob die tabelle phpbb_forums noch vorhanden ist
also du hast nichts an der config.php geändert? nur phpmyadmin genutzt?
Auch nicht aus versehn auf das rote kreuz bei phpbb_forums gekommen?
gruß Jan
guck mal mit phpmyadmin ob die tabelle phpbb_forums noch vorhanden ist

also du hast nichts an der config.php geändert? nur phpmyadmin genutzt?
Auch nicht aus versehn auf das rote kreuz bei phpbb_forums gekommen?
gruß Jan
"Life begins at 40 Knots...!" 
kein (kostenlosen) Support per pn, mail, icq usw. | Kostenlosen Support gibt es hier im Forum!

kein (kostenlosen) Support per pn, mail, icq usw. | Kostenlosen Support gibt es hier im Forum!
Die einzigste Datei mit dem Namen Forum ist die Datei phpbb_forum_prune Sonst ist da nichts mehr.
EDIT, ich glaube ich hab zwei Tabellen gelöscht
Hier mal ein Bild
[ externes Bild ]
EDIT, ich glaube ich hab zwei Tabellen gelöscht

Hier mal ein Bild
[ externes Bild ]
Bitte halte dich in Zukunft an die Regeln (Topic Bumping). Du kannst sie hier nachlesen.
Wenn du ein Backup hast, dann spiel es ein. Falls du keins hast, musst du die Tabelle phpbb_forums neuerstellen.
Dazu einfach folgende SQL-Anweisung in phpMyAdmin ausführen:
Danach musst du im Administrationsbereich alle Foren geauso erstellen, wie du sie vorher hattest. Damit die Beiträge auch dem richtigen Forum zugeordnet werden können. Ein Blick in die phpbb_topics hilft dir vielleicht dabei. Dort siehst du alle Themen mir der dazugehörigen Forenid.
Solltest du das nicht hinbekommen, dann bleibt dir eine komplette Neuinstalltion nicht erspart.
Wenn du ein Backup hast, dann spiel es ein. Falls du keins hast, musst du die Tabelle phpbb_forums neuerstellen.
Dazu einfach folgende SQL-Anweisung in phpMyAdmin ausführen:
Code: Alles auswählen
#
# Table structure for table 'phpbb_forums'
#
CREATE TABLE phpbb_forums (
forum_id smallint(5) UNSIGNED NOT NULL,
cat_id mediumint(8) UNSIGNED NOT NULL,
forum_name varchar(150),
forum_desc text,
forum_status tinyint(4) DEFAULT '0' NOT NULL,
forum_order mediumint(8) UNSIGNED DEFAULT '1' NOT NULL,
forum_posts mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
forum_topics mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
forum_last_post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
prune_next int(11),
prune_enable tinyint(1) DEFAULT '0' NOT NULL,
auth_view tinyint(2) DEFAULT '0' NOT NULL,
auth_read tinyint(2) DEFAULT '0' NOT NULL,
auth_post tinyint(2) DEFAULT '0' NOT NULL,
auth_reply tinyint(2) DEFAULT '0' NOT NULL,
auth_edit tinyint(2) DEFAULT '0' NOT NULL,
auth_delete tinyint(2) DEFAULT '0' NOT NULL,
auth_sticky tinyint(2) DEFAULT '0' NOT NULL,
auth_announce tinyint(2) DEFAULT '0' NOT NULL,
auth_vote tinyint(2) DEFAULT '0' NOT NULL,
auth_pollcreate tinyint(2) DEFAULT '0' NOT NULL,
auth_attachments tinyint(2) DEFAULT '0' NOT NULL,
PRIMARY KEY (forum_id),
KEY forums_order (forum_order),
KEY cat_id (cat_id),
KEY forum_last_post_id (forum_last_post_id)
);
Code: Alles auswählen
INSERT INTO phpbb_forums (forum_id, forum_name, forum_desc, cat_id, forum_order, forum_posts, forum_topics, forum_last_post_id, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_announce, auth_sticky, auth_pollcreate, auth_vote, auth_attachments) VALUES (1, 'Test Forum 1', 'Ein Test-Forum.', 1, 10, 1, 1, 1, 0, 0, 0, 0, 1, 1, 3, 3, 1, 1, 3);
Solltest du das nicht hinbekommen, dann bleibt dir eine komplette Neuinstalltion nicht erspart.