4

我有一个 sql 文件480,396kb。我无法在我phpmyadmin的内存限制中导入文件

仅是 (Max: 128MiB)。当我导入 sql 文件时,它显示错误

您可能尝试上传过大的文件。有关此限制的解决方法,请参阅文档。

我更改了php.ini文件中的内存限制

upload_max_filesize还有post_max_size

4

4 回答 4

6

Importing a large file from the command line is simple:

#mysql -p... -u... -h... database_name < file.sql 

OR

You can use this plugins

Get from Here

于 2013-08-23T05:48:10.227 回答
3

重新启动 apache 的连接。

于 2013-08-23T05:42:14.580 回答
1

Try to change max_file_uploads, did you see maxfilesize to upload in phpmyadmin,if you change all in php.ini then it must update,

also restart apache

于 2013-08-23T05:47:53.477 回答
-1

我建议使用 mysql 命令行工具来导入数据库。这样您就没有内存限制问题,并且导入速度提高了 100 倍。

于 2013-08-23T05:47:09.960 回答