1. First, we need to find the php configuration file php.ini file, then press Ctrl F and search for post_max_size
. If you use your own configured php, the default The value should be 8M. Many integrated environments have not changed this parameter. If the file you want to import is less than 8M, you do not need to modify this parameter. If it is larger than 8M, modify it to the value you need.
2. After configuring post_max_size, we need to search for upload_max_filesize
. If you are using your own environment, this value defaults to 2M. If you are using an integrated environment, it may be 8M, and then change it to the size you want to import (the upper limit of the imported file is the smallest value between post_max_size and upload_max_filesize)
3. Then we log in to phpmyadmin and click Import. We check the rightmost side of the file to be imported. There is a maximum limit. Is it changed to the value we set (because although post_max_size is set to 130M, the setting in upload_max_filesize is 110M, so the maximum limit is 110M)
Recommended related articles and tutorials: phpmyadmin tutorial
The above is the detailed content of How to increase the upper limit of imported files in phpmyadmin. For more information, please follow other related articles on the PHP Chinese website!