Jump to content

[Résolu]Import dans la Version 1.1.0.1


Recommended Posts

Bonjour,
Mauvaise manip je ne pense pas plutôt un bug

Si 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 = 10

Les id_product ne correspondent pas et l'image ne s'affiche pas

Link to comment
Share on other sites

  • 2 weeks later...

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

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

Bonjour
Il 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 wink
Although this ID should not be neccessary as the Auto Increment value should be included somewhere in AdminImport.php
I 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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...