wenn ich die Datei importiere.
das ist so ziemlich der erste code in der import datei.
Ich habe die Sicherung und den export meiner phpbb3 Datenbank verglichen, die auf einer php 5.5 datenbank liegt.
Import datei (php 4.0 Datenbank/ phpbb2 Forum):
USE XXXXXX; (den namen meiner datenback braucht keiner zu wissen)
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
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
--
-- Daten für Tabelle `phpbb_acl_groups`
--
INSERT INTO `phpbb_acl_groups` VALUES (1, 19, 0, 18, 0); <- Fehlermeldung bezieht sich auf das
export einer von phpbb3.1 genutzten php5.5 mySQLdatenbank gleiche tabelle:
CREATE TABLE IF NOT EXISTS `e0z4f_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=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
--
-- Daten für Tabelle `e0z4f_acl_groups`
--
INSERT INTO `e0z4f_acl_groups` (`group_id`, `forum_id`, `auth_option_id`, `auth_role_id`, `auth_setting`) VALUES
(1, 0, 88, 0, 1),
man sehe den Unterschied... das wird eine Heidenarbeit