vecio88 Posted March 13, 2014 Share Posted March 13, 2014 Salve a tutti, devo creare uno script di importazione di categorie, e attraverso una analisi del db ho individuato i campi da riempire e perciò le query da fare. Però dopo l'importazione non viene aggiornato il menu presente nella sidebar di sinistri dove dice categorie...per intenderci quella presente nel tema subito dopo aver installato prestashop Spero di essere stato chiaro. Riporto le query $category_lang = "INSERT INTO category_lang (id_category, id_shop, id_lang, name, description, link_rewrite, meta_title, meta_keywords, meta_description) VALUES ('$catoria_l1[GM_CODICE]', 1, 1, '".ucfirst(strtolower($catoria_l1['GM_DESCRIZ']))."', '', '$link_rewrite', '', '', '')"; $date_add = date("Y-m-d H:i:s"); $category = "INSERT INTO category (id_category, id_parent, id_shop_default, level_depth, nleft, nright, active, date_add, date_upd, position, is_root_category) VALUES ('$catoria_l1[GM_CODICE]', 2, 1, 2, 0, 0, 1, '$date_add', '$date_add', 0, 0)"; $category_shop = "INSERT INTO category_shop (id_category, id_shop, position) VALUES ('$catoria_l1[GM_CODICE]', 1, $position)"; $position++; // Gruppo utenti che visualizzano la categoria $category_group1 = "INSERT INTO category_group (id_category, id_group) VALUES('$catoria_l1[GM_CODICE]', 1)"; $category_group2 = "INSERT INTO category_group (id_category, id_group) VALUES('$catoria_l1[GM_CODICE]', 2)"; $category_group3 = "INSERT INTO category_group (id_category, id_group) VALUES('$catoria_l1[GM_CODICE]', 3)"; // ---------------------------------------------------------- Link to comment Share on other sites More sharing options...
vecio88 Posted March 13, 2014 Author Share Posted March 13, 2014 Nuovo indizio, ho provato a creare una categoria dal pannello di controllo e me l'ha aggiunta nella sidebar a sinistra. Ho cancellato tutte le voci presente nel db appartenenti a quella categoria, ma continua a visualizzarmela nella sidebar(SOLO LI) come mai? Link to comment Share on other sites More sharing options...
Luigi Massa Posted March 13, 2014 Share Posted March 13, 2014 Perché non uso il tool standard di Prestashop? Operare a database può essere un rischio altissimo. Spendi 30 minuti per capire come funziona l'importazione. Risparmi messi di problemi per aver toccato il database con dati inconsistenti 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