phpmyadmin导入(import)文件限制的解决办法
程序员文章站
2022-06-06 22:24:45
到网上搜索了一下前人的解决办法,大多数都说修改php.ini中的upload_max_filesize,但修改了这个以后,还是提示这个问题;但phpmyadmin在提示这个...
到网上搜索了一下前人的解决办法,大多数都说修改php.ini中的upload_max_filesize,但修改了这个以后,还是提示这个问题;但phpmyadmin在提示这个问题的时候,右下角有一行英文提示,大致意思是说,解决这个问题,可以参考 phpmyadmin文档;直接点击这个链接,phpmyadmin自动查找到了以下说明:
[1.16] i cannot upload big dump files (memory, http or timeout problems).
starting with version 2.7.0, the import engine has been re–written and these problems should not occur. if possible, upgrade your phpmyadmin to the latest version to take advantage of the new import features.
the first things to check (or ask your host provider to check) are the values of upload_max_filesize, memory_limit and post_max_size in the php.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 和post_max_size,并且推荐修改的值要稍大于导入的巨大sql数据库文件;依照这个提示,我修改了以上三个在php.ini中的值以后,重启了php环境,再次导入时,虽然 phpmyadmin还是显示导入最大限制:20,480 kb,但巨大的80m数据库文件已经被成功的导入了。
[1.16] i cannot upload big dump files (memory, http or timeout problems).
starting with version 2.7.0, the import engine has been re–written and these problems should not occur. if possible, upgrade your phpmyadmin to the latest version to take advantage of the new import features.
the first things to check (or ask your host provider to check) are the values of upload_max_filesize, memory_limit and post_max_size in the php.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 和post_max_size,并且推荐修改的值要稍大于导入的巨大sql数据库文件;依照这个提示,我修改了以上三个在php.ini中的值以后,重启了php环境,再次导入时,虽然 phpmyadmin还是显示导入最大限制:20,480 kb,但巨大的80m数据库文件已经被成功的导入了。
上一篇: PHP 采集程序中常用的函数
下一篇: php下图片文字混合水印与缩略图实现代码
推荐阅读
-
修改php.ini实现Mysql导入数据库文件最大限制的修改方法
-
如何解决phpmyadmin导入数据库文件最大限制2048KB
-
php中比较简单的导入phpmyadmin生成的sql文件的方法
-
win2008 iis7 上传大文件限制的真正解决办法
-
python import导入三种方式(导入不同文件夹的文件,window和linux的区别)
-
mysql导入数据库文件最大限制的修改_MySQL
-
phpmyadmin PhpMyAdmin中无法导入sql文件的解决办法
-
修改MySQL导入数据文件大小限制的方案_MySQL
-
PhpMyAdmin中无法导入sql文件的解决办法_PHP教程
-
修改php.ini实现Mysql导入数据库文件最大限制的修改方法_PHP教程