phpMyAdmin import file size is controlled through upload_max_filesize
and post_max_size
. phpMyAdmin will determine the smaller value of the two configurations upload_max_filesize and post_max_size The item is a valid value for the import database file size limit, so to modify the import file size, both configuration parameters must be modified.
Instructions:
Modification method:
1. Open the php.ini configuration file;
2. Modify upload_max_filesize, the default is 2M, just change it to the size you want;
3. Modify post_max_size, change it to the size you want;
4. The option file_uploads defaults to on, If it is not on, please change it to on.
Recommended related articles and tutorials: phpmyadmin tutorial
The above is the detailed content of How to adjust the phpmyadmin import database file size limit. For more information, please follow other related articles on the PHP Chinese website!