Pagina 1 van 1

SQL Error

Geplaatst: 09 nov 2003, 18:29
door ricco
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

Geplaatst: 09 nov 2003, 18:57
door WebSiteNet
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.

Geplaatst: 09 nov 2003, 19:13
door ricco
heyy bedankt..
hij doet t weer@@@!!! :lol: