jaahaa... ich hab' die KB gelesen... komme aber trotzdem beim Import nicht weiter.
Die Meldung:
Die entsprechende Stelle in der read_dump.lib.php:Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 2046374 bytes) in /srv/www/htdocs/phpmyadmin/libraries/read_dump.lib.php on line 112
Code: Alles auswählen
if (!$end_of_comment) {
// no eol found after '#', add the parsed part to the returned
// array if required and exit
if ($start_of_comment > 0) {
$ret[] = trim(substr($sql, 0, $start_of_comment));
}
return TRUE;
} else {
$sql = substr($sql, 0, $start_of_comment)
. ltrim(substr($sql, $end_of_comment));
$sql_len = strlen($sql);
$i--;
} // end if...else
} // end else if (is comment)
// ... and finally disactivate the "/*!...*/" syntax if MySQL < 3.22.07
else if ($release < 32270
&& ($char == '!' && $i > 1 && $sql[$i-2] . $sql[$i-1] == '/*')) {
$sql[$i] = ' ';
} // end else if
Gibt es hierfür einen klugen Rat? Iiiiich verzweifel und gebe gerne zu, dass ich noch nicht mal die komplette Fehlermeldung verstehe.
