Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Magmi Images not appearing [closed]

Tags:

magento

magmi

I am importing products with Magmi but I can't get the images appearing, I have gone through the other questions but with no luck.

When I upload I dont get any images not found errors and it looks like it appears in the backend as it says hover to view image, but when I hover over it just dissapers like there is no image there.

I've got this in my "Read Local Images From" media/import in Magmi I am assuming this is public_html/media/import?

And I have the images in there and in my csv column I have image-name.jpg

Has anyone had this issue before and found a fix?

like image 324
Matt Avatar asked Jul 24 '12 10:07

Matt


2 Answers

Thats a sample of how i am use it. I notice that i need to upload the diff sizes to have them in the products.

sku,image,small_image,thumbnail,media_gallery,store,websites 4101078,/4101078-marquise-ring.jpg,/4101078-marquise-ring-s.jpg,/4101078-marquise-ring-t.jpg,/4101078-marquise-ring-2.jpg;/4101078-marquise-ring-3.jpg;/4101078-marquise-ring-4.jpg,,

Works perfect to me,

Try regenerate the images after the importation from the cashe menu

like image 127
Zifre Avatar answered Oct 07 '22 17:10

Zifre


The file path is case sensitive in Linux. Don't forget to put in the right cases in your csv.

Like blakcaps mentioned, the value of image, small_image and thumbnail should always start with a slash. Say, if the path of your picture is "public_html/media/import/myfolder/Abc.jpg", it should look like this in your csv file.

   sku, image, small_image, thumbnail 
   sku_abc, /myfolder/Abc.jpg, /myfolder/Abc.jpg, /myfolder/Abc.jpg

And remember to give your web server read/write permission to "media" folder.

like image 34
Joe Hong Avatar answered Oct 07 '22 19:10

Joe Hong