如何增加 phpmyadmin 的内存大小
当我尝试在本地主机上导入 magento 数据库时,我遇到一些问题。它只导入 18 个表,但实际上它包含大约 383 个表。它给出了下面给出的错误
致命错误:第 253 行 /usr/share/phpmyadmin/libraries/import.lib.php 中允许的内存大小 16777216 字节已耗尽(尝试分配 2089674 字节)
此问题将如何配置。
是否需要更改php.ini
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
使用这个:
使用命令行导入
或
在 php.ini 中将
其更改为其他更大的值。但正如 Dan 所说,使用命令行更好。
use this :
to import using command line
or
in php.ini
change this to some other larger value. But as Dan said using command line is preferable.
phpMyAdmin 最近一直在对我施加内存限制(而且我什至没有导入/执行大量数据),所以我只是在我的 config.inc.php
https://docs.phpmyadmin.net/en/latest/config.html#cfg_MemoryLimit
phpMyAdmin has been blowing memory limits on me lately (and I wasn't even importing/executing large amounts of data) so I've just tried the following in my config.inc.php
https://docs.phpmyadmin.net/en/latest/config.html#cfg_MemoryLimit
试试这个 http://dev.mysql.com/doc/refman/5.5 /en/mysqlimport.html 我能够导入 930 MB 的数据库。
Try this http://dev.mysql.com/doc/refman/5.5/en/mysqlimport.html I was capable to import a 930 MB database.
您可以像其他答案提到的那样更改 php.ini 。在你的本地主机上可以没问题。但是在具有更多虚拟主机的网络服务器上,您可能不想增加所有主机的内存限制(这就是 php.ini 中的指令所做的)。
要仅增加给定虚拟主机的内存限制,请编辑虚拟主机设置。例如:
或者,您可以将相同的 php_value 放入 .htaccess 文件中,但您的虚拟主机必须允许更改此值。
You can change php.ini as other answers have mentioned. It can be ok on you localhost. But on webserver with more virtualhost you probably don't want to increase memory limit for all hosts (that's what directive in php.ini does).
To increse memory limit only for given virtualhost edit virtualhost settings. For example:
Or, you can place the same php_value into your .htaccess file, but your virtualhost must allow to change this values.
我在数据库迁移时遇到了同样的问题。
尝试使用如下查询更改导出以构建文件的配置:
当我创建这样的查询时:
查询太大,无法在内存中分配它们。
当我更改它时,有很多小查询,因此内存没有问题。
I was the same problem with the migration of database.
Try to change configuration of export to build file with queries like this:
When I was creating queries like this one:
queries were too big to allocate them in memory.
When I changed it, there were a lot of small queries so there wasn't problem with memory.
就我而言,它通过在文件
php.ini
中指定pcre.jit=0
来工作。In my case, it works by specifying
pcre.jit=0
in the filephp.ini
.使用这个:
编辑你的 php.ini 文件:更改
Use this :
Edit your php.ini file: Change