Wenn alles nichts hilft, hilft auf jedenfall das manuelle einspielen, zumindest kannst Du dann wieder das Board online nehmen.
vom Prinzip her sollte Dein Dump ja so aussehen:
Code: Alles auswählen
--
-- Table structure for table `phpbb_anti_robotic_reg`
--
CREATE TABLE `phpbb_anti_robotic_reg` (
`session_id` char(32) NOT NULL default '',
`reg_key` char(5) NOT NULL default '',
`timestamp` int(11) unsigned NOT NULL default '0',
PRIMARY KEY (`session_id`)
) TYPE=MyISAM;
--
-- Dumping data for table `phpbb_anti_robotic_reg`
--
INSERT INTO `phpbb_anti_robotic_reg` VALUES ('43c37aacf962f950uf5395s50ffc3f54','ydrqw',10622192114);
--
-- Table structure for table `phpbb_auth_access`
--
CREATE TABLE `phpbb_auth_access` (
`group_id` mediumint(8) NOT NULL default '0',
`forum_id` smallint(5) unsigned NOT NULL default '0',
`auth_view` tinyint(1) NOT NULL default '0',
`auth_read` tinyint(1) NOT NULL default '0',
`auth_post` tinyint(1) NOT NULL default '0',
`auth_reply` tinyint(1) NOT NULL default '0',
`auth_edit` tinyint(1) NOT NULL default '0',
`auth_delete` tinyint(1) NOT NULL default '0',
`auth_sticky` tinyint(1) NOT NULL default '0',
`auth_announce` tinyint(1) NOT NULL default '0',
`auth_globalannounce` tinyint(1) NOT NULL default '0',
`auth_vote` tinyint(1) NOT NULL default '0',
`auth_pollcreate` tinyint(1) NOT NULL default '0',
`auth_attachments` tinyint(1) NOT NULL default '0',
`auth_mod` tinyint(1) NOT NULL default '0',
`auth_ban` tinyint(1) NOT NULL default '0',
`auth_greencard` tinyint(1) NOT NULL default '0',
`auth_bluecard` tinyint(1) NOT NULL default '0',
KEY `group_id` (`group_id`),
KEY `forum_id` (`forum_id`)
) TYPE=MyISAM;
--
-- Dumping data for table `phpbb_auth_access`
--
Du öffnest also Dein Dump, z.B. mit Word und löscht überall die Zeilen wo
-- drinne steht, würde in diesem Falle dann so aussehen:
Code: Alles auswählen
CREATE TABLE `phpbb_anti_robotic_reg` (
`session_id` char(32) NOT NULL default '',
`reg_key` char(5) NOT NULL default '',
`timestamp` int(11) unsigned NOT NULL default '0',
PRIMARY KEY (`session_id`)
) TYPE=MyISAM;
INSERT INTO `phpbb_anti_robotic_reg` VALUES ('43c37aacf962f950c83e83150ffc3f54','ydrqw',1079892114);
CREATE TABLE `phpbb_auth_access` (
`group_id` mediumint(8) NOT NULL default '0',
`forum_id` smallint(5) unsigned NOT NULL default '0',
`auth_view` tinyint(1) NOT NULL default '0',
`auth_read` tinyint(1) NOT NULL default '0',
`auth_post` tinyint(1) NOT NULL default '0',
`auth_reply` tinyint(1) NOT NULL default '0',
`auth_edit` tinyint(1) NOT NULL default '0',
`auth_delete` tinyint(1) NOT NULL default '0',
`auth_sticky` tinyint(1) NOT NULL default '0',
`auth_announce` tinyint(1) NOT NULL default '0',
`auth_globalannounce` tinyint(1) NOT NULL default '0',
`auth_vote` tinyint(1) NOT NULL default '0',
`auth_pollcreate` tinyint(1) NOT NULL default '0',
`auth_attachments` tinyint(1) NOT NULL default '0',
`auth_mod` tinyint(1) NOT NULL default '0',
`auth_ban` tinyint(1) NOT NULL default '0',
`auth_greencard` tinyint(1) NOT NULL default '0',
`auth_bluecard` tinyint(1) NOT NULL default '0',
KEY `group_id` (`group_id`),
KEY `forum_id` (`forum_id`)
) TYPE=MyISAM;
Dieses kopierst Du dann und fügst es manuell im phpMyAdmin unter --> SQL Stück für Stück ein und bestätigst dies. Allerdings ist das eine strapazierende Tätigkeit wenn Dein Dump (gepackt) größer als 1 MB ist.
Nicht die eleganteste Lösung aber effektiv
