Magento 2.0.1 Import/Export Error

adminexportimportimportexportmagento2

Firstly I export csv file from admin and keep only one row and delete the remaining row, after that I will change product name,category name and then import the file.I am getting the result in frontend. Similarly update the 52 rows of new category and product name, now stuck with one error

1. Imported resource (image) could not be downloaded from external resource due to timeout or access permissions in rows: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10

note: here I am not upload image folder because I dont want to change image, in csv I just change product name and category.

I have checked file permission, its fine (755).

check data also give success message, import only the problem. I think its minor fix.

anything I did wrong? how to solve the issue?

Thanks in advance

Best Answer

First time I had success because I set Allowed Error Counts to 10 while importing. My CSV file has only one row so it skipped the one error, Updated the details except image.

Second time I got an error because I have more than 10 rows.

Reason:

While importing, magento looks at images in the pub/media/import folder, but I left it as empty so instead it will throw the error I previously mentioned. After copying the image into pub/media/import my problem got solved.

note: suppose you need to change product name only, just remove the all the image value(leave as empty, don't need to mention the image URL).

Related Topic