|
Ciao a tutti,
Sto utilizzando magento 1.7.0.2 e sto cercando di installare i sample data 1.6.1.0.
Prima di procedere all’ installazione di magento ho cercato di importare i sample data nel database, ma non funziona e mi da un errore.
ECCO L’ERRORE che mi da:
[color=blue]C’è la possibilità che ci sia un bug nel parser SQL. Per favore, esaminate la query accuratamente, e controllate che le virgolette siano corrette e non sbagliate. Altre possibili cause d’errori possono essere che si stia cercando di uploadare un file binario al di fuori di un’area di testo virgolettata. Si può anche provare la query MySQL dalla riga di comando di MySQL. L’errore qui sotto restituito dal server MySQL, se ce n’è uno, può anche aiutare nella diagnostica del problema. Se ci sono ancora problemi, o se il parser SQL di phpMyAdmin sbaglia quando invece l’interfaccia a riga di comando non mostra problemi, si può ridurre la query SQL in ingresso alla singola query che causa problemi, e inviare un bug report con i dati riportati nella sezione CUT qui sotto:
----INIZIO CUT----
eNodzLEKwyAURuH9PkKm/wFEWhsR3CRIGtCrUdtA3yBLpy59+2rXw8fxpaRisVyxKATPFjM0jDZU
W+8TUfzWPVhoqaUy9KgFqQq41XMTePqOjvONmF5bCK6zC+XoLG7DS0X5nocSqY7HLA2OjblRcLxa
nB/6339I1h+s
----FINE CUT----
----INIZIO RAW----
ERROR: C1 C2 LEN: 4 5 757
STR:
MySQL: 5.5.27
USR OS, AGENT, VER: Win MOZILLA 5.0
PMA: 3.5.2.2
PHP VER,OS: 5.4.7 WINNT
LANG: it
SQL:
----FINE RAW----
Query SQL:
Messaggio di MySQL: Documentazione
#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 ‘Rar!’ at line 1
__________________________________________________________________________________________________________
Ho anche effettuato un controllo sui requisiti per magento e questo è il risultato:
You need PHP 5.2.0 (or greater)’; } else { $pass .=’
You have PHP 5.2.0 (or greater)
‘; } if(!ini_get(’safe_mode’)) { $pass .=’
Safe Mode is off
‘; preg_match(’/[0-9]\.[0-9]+\.[0-9]+/’, shell_exec(’mysql -V’), $version); if(version_compare($version[0], ‘4.1.20’, ‘<’)) { $fail .= ‘
You need MySQL 4.1.20 (or greater)
‘; } else { $pass .=’
You have MySQL 4.1.20 (or greater)
‘; } } else { $fail .= ‘
Safe Mode is on
‘; } foreach($extensions as $extension) { if(!extension_loaded($extension)) { $fail .= ‘
You are missing the ‘.$extension.’ extension
‘; } else{ $pass .= ‘
You have the ‘.$extension.’ extension
‘; } } if($fail) { echo ‘
Your server does not meet the following requirements in order to install Magento.’; echo ‘
The following requirements failed, please contact your hosting provider in order to receive assistance with meeting the system requirements for Magento:’; echo ‘
‘.$fail.’
‘; echo ‘The following requirements were successfully met:’; echo ‘
‘.$pass.’
‘; } else { echo ‘
Congratulations! Your server meets the requirements for Magento.
‘; echo ‘
‘.$pass.’
‘; } } ?>
__________________________________________________________________________________________________________
Sapreste aiutarmi per favore?
Grazie
Ste
|