如何增加 phpmyadmin 的内存大小

发布于 2024-10-15 08:45:15 字数 264 浏览 2 评论 0 原文

当我尝试在本地主机上导入 magento 数据库时,我遇到一些问题。它只导入 18 个表,但实际上它包含大约 383 个表。它给出了下面给出的错误

致命错误:第 253 行 /usr/share/phpmyadmin/libraries/import.lib.php 中允许的内存大小 16777216 字节已耗尽(尝试分配 2089674 字节)

此问题将如何配置。 是否需要更改php.ini

I am facing some problem when I am trying to import magento database on localhost. It just import 18 table but in actual it contain 383 approx table. It gives error given below

Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 2089674 bytes) in /usr/share/phpmyadmin/libraries/import.lib.php on line 253

How this problem will configure.
Is there need to change php.ini?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

遇见了你 2024-10-22 08:45:15

使用这个:

c:\mysql\bin\> mysql -u username -p password database_name < filename.sql

使用命令行导入


在 php.ini 中将

memory_limit = 256M

其更改为其他更大的值。但正如 Dan 所说,使用命令行更好。

use this :

c:\mysql\bin\> mysql -u username -p password database_name < filename.sql

to import using command line

or
in php.ini

memory_limit = 256M

change this to some other larger value. But as Dan said using command line is preferable.

你又不是我 2024-10-22 08:45:15

phpMyAdmin 最近一直在对我施加内存限制(而且我什至没有导入/执行大量数据),所以我只是在我的 config.inc.php

$cfg['MemoryLimit'] = '128M';

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

$cfg['MemoryLimit'] = '128M';

https://docs.phpmyadmin.net/en/latest/config.html#cfg_MemoryLimit

走走停停 2024-10-22 08:45:15

试试这个 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.

昔梦 2024-10-22 08:45:15

您可以像其他答案提到的那样更改 php.ini 。在你的本地主机上可以没问题。但是在具有更多虚拟主机的网络服务器上,您可能不想增加所有主机的内存限制(这就是 php.ini 中的指令所做的)。

要仅增加给定虚拟主机的内存限制,请编辑虚拟主机设置。例如:

<VirtualHost *:443>
   #your virtualhost settings
   php_value memory_limit 64M #place any number you need
</VirtualHost>

或者,您可以将相同的 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:

<VirtualHost *:443>
   #your virtualhost settings
   php_value memory_limit 64M #place any number you need
</VirtualHost>

Or, you can place the same php_value into your .htaccess file, but your virtualhost must allow to change this values.

花伊自在美 2024-10-22 08:45:15

我在数据库迁移时遇到了同样的问题。

尝试使用如下查询更改导出以构建文件的配置:

INSERT INTO tbl_name VALUES (1,2,3)

当我创建这样的查询时:

INSERT INTO tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)

查询太大,无法在内存中分配它们。
当我更改它时,有很多小查询,因此内存没有问题。

I was the same problem with the migration of database.

Try to change configuration of export to build file with queries like this:

INSERT INTO tbl_name VALUES (1,2,3)

When I was creating queries like this one:

INSERT INTO tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)

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.

怎樣才叫好 2024-10-22 08:45:15

就我而言,它通过在文件 php.ini 中指定 pcre.jit=0 来工作。

In my case, it works by specifying pcre.jit=0 in the file php.ini.

〆凄凉。 2024-10-22 08:45:15

使用这个:

编辑你的 php.ini 文件:更改

memory_limit = 256M

Use this :

Edit your php.ini file: Change

memory_limit = 256M
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文