SQL Error

Installatie lukt niet? Plotseling een foutmelding. Of weet je niet hoe iets werkt. Problemen met phpBB2 kun je in dit archief opzoeken.
Forumregels

Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.
phpBB2.0.x
Gesloten
ricco
Berichten: 45
Lid geworden op: 09 nov 2003, 18:22

SQL Error

Bericht door ricco » 09 nov 2003, 18:29

Ik ben een beginner wat phpbb betreft, heb het in eerste instantie goed kunnen installeren , het werkte ook allemaal, tot ik net een foutmelding kreeg dat er een tabel ontbrak, hoe kan ik dit fixen :shock: ? zie hieronder:

DEBUG MODE

SQL Error : 1146 Table 'denizli.phpbb_auth_access' doesn't exist

SELECT aa.forum_id, u.user_id, u.username FROM phpbb_auth_access aa, phpbb_user_group ug, phpbb_groups g, phpbb_users u WHERE aa.auth_mod = 1 AND g.group_single_user = 1 AND ug.group_id = aa.group_id AND g.group_id = aa.group_id AND u.user_id = ug.user_id GROUP BY u.user_id, u.username, aa.forum_id ORDER BY aa.forum_id, u.user_id

Line : 217
File : /vhost/denizli.nl/home/www/html/phpBB2/index.php

Gebruikersavatar
WebSiteNet
Berichten: 6524
Lid geworden op: 20 okt 2003, 16:56
Locatie: Wieringerwerf
Contacteer:

Bericht door WebSiteNet » 09 nov 2003, 18:57

Welkom op dit forum.

Om dit op te lossen zal je een sql-query uit moeten voeren:
CREATE TABLE phpbb_auth_access (
group_id mediumint(8) DEFAULT '0' NOT NULL,
forum_id smallint(5) UNSIGNED DEFAULT '0' NOT NULL,
auth_view tinyint(1) DEFAULT '0' NOT NULL,
auth_read tinyint(1) DEFAULT '0' NOT NULL,
auth_post tinyint(1) DEFAULT '0' NOT NULL,
auth_reply tinyint(1) DEFAULT '0' NOT NULL,
auth_edit tinyint(1) DEFAULT '0' NOT NULL,
auth_delete tinyint(1) DEFAULT '0' NOT NULL,
auth_sticky tinyint(1) DEFAULT '0' NOT NULL,
auth_announce tinyint(1) DEFAULT '0' NOT NULL,
auth_vote tinyint(1) DEFAULT '0' NOT NULL,
auth_pollcreate tinyint(1) DEFAULT '0' NOT NULL,
auth_attachments tinyint(1) DEFAULT '0' NOT NULL,
auth_mod tinyint(1) DEFAULT '0' NOT NULL,
KEY group_id (group_id),
KEY forum_id (forum_id)
);
Als dat gedaan is moet de error verholpen zijn.

ricco
Berichten: 45
Lid geworden op: 09 nov 2003, 18:22

Bericht door ricco » 09 nov 2003, 19:13

heyy bedankt..
hij doet t weer@@@!!! :lol:

Gesloten