Hier ein Auszug aus der SQL...
Die rot markierten interessieren mich genauer. Nicht das hinterher halb offene Befehle nicht verstanden werden von der DB.-- Dump by MySQLDumper 1.24 (http://mysqldumper.net)
/*!40101 SET NAMES 'utf8' */;
SET FOREIGN_KEY_CHECKS=0;
-- Dump created: 2010-08-20 22:24
--
-- Create Table `phpbb_acl_groups`
--
CREATE TABLE `phpbb_acl_groups` (
`group_id` mediumint(8) unsigned NOT NULL default '0',
`forum_id` mediumint(8) unsigned NOT NULL default '0',
`auth_option_id` mediumint(8) unsigned NOT NULL default '0',
`auth_role_id` mediumint(8) unsigned NOT NULL default '0',
`auth_setting` tinyint(2) NOT NULL default '0',
KEY `group_id` (`group_id`),
KEY `auth_opt_id` (`auth_option_id`),
KEY `auth_role_id` (`auth_role_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
--
-- Data for Table `phpbb_acl_groups`
--
/*!40000 ALTER TABLE `phpbb_acl_groups` DISABLE KEYS */;
INSERT INTO `phpbb_acl_groups` (`group_id`,`forum_id`,`auth_option_id`,`auth_role_id`,`auth_setting`) VALUES ('141','1','0','14','0');
Vielen Dank schonmal für deine Hilfe, Mahony.
P.S.: Du bist echt schnell mit deinen Antworten. OK, wegen der Create Befehle weiß ich bescheid und die Insert Into Befehle?