使用phpmyadmin数据库导入出错:You probably tried to upload too large file!
解决方法
The first things to check (or ask your host provider to check) are the values ofupload_max_filesize,
memory_limit and post_max_size in thephp.ini configuration file. All of these three settings limit the maximum size of data that can be submitted and handled by PHP. One user also said that post_max_size and
memory_limit need to be larger than upload_max_filesize.
在php.ini这个文件中把这三个upload_max_filesize, memory_limit and post_max_size修改成比自己要导入的数据大就可以了!默认的是20
本文介绍了当使用phpMyAdmin进行数据库导入时遇到错误'You probably tried to upload too large file'的解决方案。主要涉及调整php.ini配置文件中的upload_max_filesize、memory_limit及post_max_size三个参数,确保这些设置大于待导入数据的大小。
1131

被折叠的 条评论
为什么被折叠?



