Internal server error when trying to import CSV
I uploaded a 100 entry csv no problem, but I get an internal server error when trying to upload a 200,000 entry list. It is about 20mb in size, and the max upload filesize in the php.ini is 128mb.
I have setup the cron job.
This discussion has been closed.
Comments
Hi GiveawayTab,
Make sure the following are properly set in your php.ini to support your extremely huge file size:
upload_max_filesize
post_max_size
max_execution_time
(set to 0 so that execution won’t time out considering your huge list size)memory_limit
Thanks.
Best regards,
Ben