leider musste ich mein komplettes BS neu installieren. Dadurch ergibt sich natürlich auch eine Neuinstallation des lokalen Servers xampp.
Jetzt dachte ich mir, ok sichere deine Datenbank (online) und spiele sie dann ins lokale System ein. Gesagt getan.
xampp neu installiert und die Datenbank angelegt. Beim Import der Online-Sicherung bekomme ich folgende Fehlermeldung:
Code: Alles auswählen
SQL-Befehl:
-- phpMyAdmin SQL Dump
-- version 2.6.4-pl3
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Erstellungszeit: 03. Januar 2006 um 08:56
-- Server Version: 4.1.15
-- PHP-Version: 5.0.5
--
-- Datenbank: `xxxxx`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `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_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',
KEY `group_id` ( `group_id` ) ,
KEY `forum_id` ( `forum_id` )
) ENGINE = MYISAM DEFAULT CHARSET = latin1 COLLATE = latin1_german2_ci
MySQL meldet:
#1064 - You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci' at line 36
kann mir einer sagen, was da schief läuft bzw. welche Fehler ich da mache ??
Danke und Gruß
Lady