Marc Posted November 1, 2008 Share Posted November 1, 2008 Bonjour,Mauvaise manip je ne pense pas plutôt un bugSi on importe un produit l'image ne s'affiche pas constaté:En réalité elles sont importées et renommées dans img/p (0-50-home.jpg)Import dans la base sql la table "image" id_product = 0 et la table "product" id_product = 10Les id_product ne correspondent pas et l'image ne s'affiche pas Link to comment Share on other sites More sharing options...
guyk Posted November 11, 2008 Share Posted November 11, 2008 pour dépanner vous pouvez renommer tout ça manuellement après import : update ps_image set id_product = id_image;et dans /img/p/ executer le script php suivant :<?foreach(glob("*.jpg") as $f) if (preg_match("/^[0-9]*\-([0-9]*)\-(.*)\.jpg$/",$f)) rename($f,preg_replace("/^[0-9]*\-([0-9]*)\-(.*)\.jpg$/","$1-$1-$2.jpg",$f));?> Link to comment Share on other sites More sharing options...
Marc Posted November 11, 2008 Author Share Posted November 11, 2008 Merci Merci mais je suppose que ce sera corrigé dans la version finale pour le moment je l'utilise pour des tests donc ce n'est pas grave ;-) Mais je garde cette correction on ne sait jamais :roll: Link to comment Share on other sites More sharing options...
Patric Posted November 11, 2008 Share Posted November 11, 2008 je suppose que ce sera corrigé dans la version finale Est-ce que tu sais si quelqu'un a déjà posté ce bug dans le forum ou le bug tracker ?Il faut être sûr que la team est au courant de ton bug... Ce serait dommage qu'il passe les mails du filet... Link to comment Share on other sites More sharing options...
Marc Posted November 11, 2008 Author Share Posted November 11, 2008 Oui aujourd'hui enfin je pense bien j 'ai d'ailleurs ajouté un commentaire http://www.prestashop.com/bug_tracker/view/749/ Link to comment Share on other sites More sharing options...
Marc Posted November 12, 2008 Author Share Posted November 12, 2008 BonjourIl y a une réponse dans le "bug traker" mais j 'avoue ne pas y comprendre grand chose :-P Ok I have also had this issue & it seems to be there is no auto generated number therefore if you try the import again adding a new column to your CSV for id_product (Auto Increment)You will find this fixes your issue & the correct id will then be linked to the product image winkAlthough this ID should not be neccessary as the Auto Increment value should be included somewhere in AdminImport.phpI think until this issue is resolved the id_product field should be required *By amwdesign on 12 Nov 2008 at 02:57 (UTC+1) Que faut-il faire ?Merci 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