spidipiddu Posted June 28, 2013 Share Posted June 28, 2013 Ciao a tutti, sono nuovo e sto utilizzando prestashop da qualche settimana. fino ad ora i problemi li ho risolti con pazienza e l'amico google, ma adesso sono in seria difficoltà. Facendo l'importazione da oscommerce fila tutto liscio fino all'ultimo click PASSO SUCCESSIVO dove mi esce questo maledetto errore: 5,il campo formato data lite è richiesto,il campo formato data completo è richiesto ho guardato in giro ed ho modificato (ad intuito) il file admin.php in translation/it ma continua ad uscirmi sempre questo errore. Sto impazzendo, aiuto per favore..... Link to comment Share on other sites More sharing options...
benjamin utterback Posted September 19, 2013 Share Posted September 19, 2013 Hello, this module is no longer supported. Please use the "shopimporter" module instead. Thank you! Link to comment Share on other sites More sharing options...
nofcfro Posted November 12, 2014 Share Posted November 12, 2014 Salve, io ho installato PrestaShop v.1.9 e il modulo shopimporter per importare il mio database oscommerce, esattamente i moduli sono: Strumenti di migrazione Importatore negozio v1.0 - by PrestaShop Strumenti di migrazione Importatore osCommerce v1.0 - by PrestaShop Tuttavia come l'utente spidipiddu ottengo l'errore: "4,il campo date_format_lite è richiesto,il campo date_format_full è richiesto" Come posso fare? Grazie anticipatamente. Link to comment Share on other sites More sharing options...
nofcfro Posted November 13, 2014 Share Posted November 13, 2014 (edited) Ho trovato un post che dovrebbe avvicinarsi a risolvere il problema: http://alvinjiang.blogspot.it/2012/03/prestashop-tips-order-date-is-empty-at.html Praticamente bisogna andare nel database, selezionare la tabella linguaggio e aggiungere queste benedette date_format_date e date_format_full varchar (32) e immettere come valori d-m-Y H:i:s Comunque il codice sql è: ALTER TABLE `ps_lang` ADD `date_format_lite` char(32) NOT NULL DEFAULT 'Y-m-d' AFTER language_code;ALTER TABLE `ps_lang` ADD `date_format_full` char(32) NOT NULL DEFAULT 'Y-m-d H:i:s' AFTER date_format_lite;UPDATE `ps_lang` SET `date_format_lite` = 'd/m/Y' WHERE `iso_code` IN ('fr', 'es', 'it');UPDATE `ps_lang` SET `date_format_full` = 'd/m/Y H:i:s' WHERE `iso_code` IN ('fr', 'es', 'it');UPDATE `ps_lang` SET `date_format_lite` = 'd.m.Y' WHERE `iso_code` = 'de';UPDATE `ps_lang` SET `date_format_full` = 'd.m.Y H:i:s' WHERE `iso_code` = 'de';UPDATE `ps_lang` SET `date_format_lite` = 'm/d/Y' WHERE `iso_code` = 'en';UPDATE `ps_lang` SET `date_format_full` = 'm/d/Y H:i:s' WHERE `iso_code`= 'en'; Io ho nella tabella i seguenti campi: languages_id (4) name (italian) code (it) images (icon.gif) directory (italian) sort_order (0) date_format_lite (d/m/Y) date_format_full (d/m/Y H:i:s) Il problema che ancora dà errore. Qualcuno ha idea? Edited November 13, 2014 by nofcfro (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now