Seite 2 von 2

Verfasst: 29.03.2004 12:27
von BriXen
ja hab ich schon und dann ??
das bigdump haengt sich dann trotzdem wieder an der gleichen stelle auf.

also erst lösch ich alle meine strukturen,
dann fang ich bigdump an, bis er abbricht.
Dann füg ich den Text oben per SQL anweisung aus,
und dann mach ich mit BigDump weiter ???!!?

... das funktioniert nicht.

MfG

Re: ...

Verfasst: 29.03.2004 12:36
von Lodda
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 ;)

Verfasst: 29.03.2004 12:42
von BriXen
aehm,

mein word zaehlt gerade noch die seiten momentan bin ich bei:

ZWEITAUSEND WORD SEITEN

und das will nicht aufhören zu zählen.

Meine SQL datei war 7 MB gross.

und nun soll ich das alles per hand eintragen ??

so nun isser stehen geblieben 2488 Seiten ?!?!?!?!!

MfG

Re: ...

Verfasst: 29.03.2004 12:44
von Lodda
lool, nein, ich schrieb ja das sich das nur bei Dumps bis 1 MB lohnt, alles darüber wird hart werden :lol:

Obwohl das meiste nur Themen und Postings sein dürften.

[edit]
Du kannst sie aber splitten in 1 MB Häppchen und diese dann so einspielen, nach und nach ;)
[/edit]

[edit2]
oder per SSH uppen, setzt allerdings ein Zugang dafür voraus ;)
[/edit2]

Verfasst: 29.03.2004 13:55
von BriXen
boah ok,

habs geschafft,

2488 Seiten eingefügt. :o puh :P

funktioniert auch soweit gut.

MfG

Verfasst: 29.03.2004 17:46
von Mister_X
Nur um das noch zu sagen:
Ich meinte eigentlich, dass du in deiner *.sql Datei die besagte Zeile finden sollst und so wie ich gepostet habe editieren, die *.sql Datei speichern und nochmal per bigdump probieren die neue Datei zu importieren.
Wenn du demnächst mehr Sachen mit phpBB2 machen willst (z.B. Mods einbauen usw.) solltest du dir einen anderen Editor als Word zu legen.

Verfasst: 29.03.2004 20:07
von BriXen
jo thx mister,

aber warum einfach, wenns auch kompliziert geht ^^
thx so far, mit der gleichen methode wie ich sie jetzt gemacht hab ( bigdump) kann ich das auch nutzen wenn ich mir 2.0.8 draufmache ??

quasi ist das backup kompatibel mit 0.8 ??

MfG

Verfasst: 29.03.2004 20:33
von Mister_X
Ja, sobald du die Datenbank komplett importiert hast (mit welcher Methode auch immer :P ;)), kopiere die config.php von deinem alten Forum in das neue Forum (und überschreibe die vorhandene Datei), dann noch die update_to_208.php aufrufen (damit die Versionsnummer auch noch auf 8 verändert wird) und gut ist. Dein Backup solltest du noch aufbewahren, nur für den Fall das irgendetwas schief läuft (passiert meistens wenn man kein Backup mehr hat :D ;))