Ich kriegs nicht hin
Ich habe Remote Zugriff auf die alte MySQL Datenbank, das Backup mache ich unter Windows mit dem Befehl
Code:
mysqldump -u username -p -h host --skip-add-locks --default-character-set=utf8 --database faszination_aegypten_de > db.sql
Danach befindet sich in der SQL Datei folgende Anweisung zum Erzeugen der mybb_fa_forums:
Code:
DROP TABLE IF EXISTS `mybb_fa_forums`;
CREATE TABLE `mybb_fa_forums` (
`fid` smallint(5) unsigned NOT NULL auto_increment,
`name` varchar(120) collate latin1_german2_ci NOT NULL default '',
`description` text collate latin1_german2_ci NOT NULL,
`linkto` varchar(180) collate latin1_german2_ci NOT NULL default '',
`type` char(1) collate latin1_german2_ci NOT NULL default '',
`pid` smallint(5) unsigned NOT NULL default '0',
`parentlist` text collate latin1_german2_ci NOT NULL,
`disporder` smallint(5) unsigned NOT NULL default '0',
`active` char(3) collate latin1_german2_ci NOT NULL default '',
`open` char(3) collate latin1_german2_ci NOT NULL default '',
`threads` int(10) unsigned NOT NULL default '0',
`posts` int(10) unsigned NOT NULL default '0',
`lastpost` int(10) unsigned NOT NULL default '0',
`lastposter` varchar(120) collate latin1_german2_ci NOT NULL default '',
`lastposteruid` int(10) unsigned NOT NULL default '0',
`lastposttid` int(10) NOT NULL default '0',
`lastpostsubject` varchar(120) collate latin1_german2_ci NOT NULL default '',
`allowhtml` char(3) collate latin1_german2_ci NOT NULL default '',
`allowmycode` char(3) collate latin1_german2_ci NOT NULL default '',
`allowsmilies` char(3) collate latin1_german2_ci NOT NULL default '',
`allowimgcode` char(3) collate latin1_german2_ci NOT NULL default '',
`allowpicons` char(3) collate latin1_german2_ci NOT NULL default '',
`allowtratings` char(3) collate latin1_german2_ci NOT NULL default '',
`status` int(4) NOT NULL default '1',
`usepostcounts` char(3) collate latin1_german2_ci NOT NULL default '',
`password` varchar(50) collate latin1_german2_ci NOT NULL default '',
`showinjump` char(3) collate latin1_german2_ci NOT NULL default '',
`modposts` char(3) collate latin1_german2_ci NOT NULL default '',
`modthreads` char(3) collate latin1_german2_ci NOT NULL default '',
`modattachments` char(3) collate latin1_german2_ci NOT NULL default '',
`style` smallint(5) unsigned NOT NULL default '0',
`overridestyle` char(3) collate latin1_german2_ci NOT NULL default '',
`rulestype` smallint(1) NOT NULL default '0',
`rulestitle` varchar(200) collate latin1_german2_ci NOT NULL default '',
`rules` text collate latin1_german2_ci NOT NULL,
`unapprovedthreads` int(10) unsigned NOT NULL default '0',
`unapprovedposts` int(10) unsigned NOT NULL default '0',
`defaultdatecut` smallint(4) unsigned NOT NULL default '0',
`defaultsortby` varchar(10) collate latin1_german2_ci NOT NULL default '',
`defaultsortorder` varchar(4) collate latin1_german2_ci NOT NULL default '',
PRIMARY KEY (`fid`)
) ENGINE=MyISAM AUTO_INCREMENT=110 DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci;
Das Forum das eigentlich 'Das Alte Ägypten' heissen soll, heisst jetzt aber 'Das Alte Ägypten', auf der Webseite wird es als 'Das Alte Ägypten' angezeigt.
Die MySQL Version auf dem neuen Server ist 5.0.32, vorher war eine 4er Version installiert.
Importieren tue ich die SQL Datei mit Bigdump.
Was läuft da falsch? Liegt das daran das der default Charset der Tabellen als latin1
deklariert ist?
Wäre sehr nett wenn mir jemand helfen könnte, ich weiß nimmer weiter....
Liebe Grüße,
lordy