I have a really large csv file with 300 columns and 12000 rows.
I want to import this once into the database using phpmyadmin without breaking the csv.
Beacuse at the moment it can only take upto 500 rows of the csv.
I have changed my php.ini file
max_execution_time=10000
memory_limit=1000M
post_max_size=8000M
And also the mysql config file my.ini
innodb_lock_wait_timeout = 900800
max_allowed_packet = 9000M
Sill after doing this I get the error 'mysql has gone away'.
Is there anything else I can do? or is there a better way to import my large CSV file into phpmyadmin