Does anyone know if or how you can increase the import size limit in phpMyAdmin? Currently my server is limited to 50MB.
Please note that this is not the same as the upload_max_filesize in php.ini. That value is set to 2MB.
I need to import a table into one of my DBs and the phpMyAdmin restriction of 50MB on the import is preventing me from doing that.
Thanks.
Amended — attached are 2 screen shots:
Screen Shot #1 — phpinfo() showing the php.ini settings.

Screen Shot #2 — showing the phpMyAdmin import restriction

Could you also increase
post_max_sizeand see if it helps?Uploading a file through an HTML form makes the upload treated like any other form element content, that’s why increasing
post_max_sizeshould be required too.Update : the final solution involved the command-line:
To export only 1 table you would do
and to import :
‘drop table your_tabe_name;’ can also be added at the top of the import script if it’s not already there, to ensure the table gets deleted before the script creates and fill it