Hello,
I want to upload a 2Gb Contact.CSV file but it doest work. I always get this error " File is to large".
I´ve changed already the php.ini. Pls i need your help.
Hello,
I want to upload a 2Gb Contact.CSV file but it doest work. I always get this error " File is to large".
I´ve changed already the php.ini. Pls i need your help.
Hi, welcome.
You might need several changes on your php.ini:
memory_limit
max_execution_time
max_upload_size
max_post_size
But if I were you, I would simply break down the CSV in parts and upload separately. It is too large and will take ages to process, and the likelihood of breaking something in the middle is high.
Also consider uploading through the database. You would need to adjust the data exactly before importing, of course.