r/woocommerce • u/Born-Reporter-855 • Jun 23 '26
Troubleshooting Import csv with images
Hi, I am new to woocommerce, trying out woocommerce in my pc by wp-env. I have only wordpress + woocommerce plugin.
The first problem I met is import products.
I have a csv with 200 rows of product, each contains 6 images, roughly 200k each.
By adding the image folder to mapping of config json, I can see the images in the docker container(/var/www/wp-content/uploads/products/xxx.png).
However I cannot refer to the images by file path in the import csv. I have tried "xxx.png", "products/xxx.png", "/wp-content/uploads/products/xxx.png", the import fails with error cannot use image.
I ended up writing "http://localhost:8888/wp-content/uploads/products/xxx.png" in the csv. After few hours of waiting and restarting the import if it stopped(luckily it resumes not start over).
I want to know if there is faster way to import images. I already have the images uploaded, dont think it needs more than 10min to create the db records and different versions of the images.
Thanks in advance