Magento – Magento 2: import large CSV file was not successful

image-uploadimportimportexportmagento-2.1magento2

Magento2 large CSV file was not successfully imported.

I am trying to import 20 Mb products CSV file but was not imported successfully. Still it says "please wait" only.

I have also changed upload_max_filesize = 20M and post_max_size = 20M in php.ini file and other settings as follows.

max_input_time = 300
max_input_time=300
max_execution _time =300 

Need help

Best Answer

we were facing same issue when importing customer infromation it was like 13000 rows, it worked when we split files of 1000 rows.

a bash command that helped to split quick is:

split -l 1000 mybigfile.csv

but you have to add the csv headers to each file.

Related Topic