Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Increase the file size limit in phpmyadmin [duplicate]

I have a sql file 480,396kb. I could not import the file in my phpmyadmin in this memory limit

is (Max: 128MiB) only. When I import the sql file it shows the error

You probably tried to upload a file that is too large. Please refer to documentation for a workaround for this limit.

I changed the memory limit in php.ini file both

upload_max_filesize and post_max_size also.

like image 935
Ishu Avatar asked Jan 13 '23 13:01

Ishu


1 Answers

Importing a large file from the command line is simple:

#mysql -p... -u... -h... database_name < file.sql 

OR

You can use this plugins

Get from Here

like image 164
Napster Avatar answered Jan 22 '23 19:01

Napster