WordPress 致命错误允许内存plugin.php

发布于 2024-12-22 16:53:20 字数 284 浏览 0 评论 0原文

好吧,也许尝试激活六个左右的插件是一个错误。但现在我被困住了,当我尝试进入我的 WP-Admin 页面时,我看到的就是这些。我不再熟悉 WordPress,不知道这是什么,为什么会这样,以及如何修复它。任何帮助将不胜感激。

致命错误:允许的内存大小 33554432 字节已耗尽(尝试 分配30720字节) /home/monkey/public_html/sites/mysiteurl.com/wp-admin/includes/plugin.php 在第883行

Ok, maybe it was a mistake trying to activate a half a dozen or so plugins. But now I am stuck this is all I see when I try to go to my WP-Admin page. I am not versed well enough with Wordpress anymore and have no idea what this is, why this is, and how I can go about fixing it. Any help would be greatly appreciated.

Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to
allocate 30720 bytes) in
/home/monkey/public_html/sites/mysiteurl.com/wp-admin/includes/plugin.php
on line 883

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

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

发布评论

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

评论(2

淡看悲欢离合 2024-12-29 16:53:20

要将 WordPress 内存增加到 64MB,请将以下内容添加到 wp-config.php:

define('WP_MEMORY_LIMIT', '64M');

来自官方 WordPress 文档< /a> 关于增加内存限制:

WP_MEMORY_LIMIT 选项允许您指定最大内存量
PHP 可以消耗的内存。在以下情况下可能需要此设置
当您收到诸如“允许的内存大小为 xxxxxx”之类的消息时
字节耗尽”。

...

请注意,如果您的主机不允许,此设置可能不起作用
增加 PHP 内存限制 - 在这种情况下,请联系您的主机
增加 PHP 内存限制。另请注意,许多主机设置了 PHP
限制为 8MB

如果您不断添加插件,最终可能会耗尽内存。在你的例子中,33554432 字节正好是 32MB,是上面预期的四倍。但您的虚拟主机可能仍然允许您增加。如果没有,可能是时候移动网络主机了。祝你好运。

To increase WordPress memory to 64MB add the following to wp-config.php:

define('WP_MEMORY_LIMIT', '64M');

From official WordPress documentation on increasing memory limit:

WP_MEMORY_LIMIT option allows you to specify the maximum amount of
memory that can be consumed by PHP. This setting may be necessary in
the event you receive a message such as "Allowed memory size of xxxxxx
bytes exhausted".

...

Please note, this setting may not work if your host does not allow for
increasing the PHP memory limit--in that event, contact your host to
increase the PHP memory limit. Also, note that many hosts set the PHP
limit at 8MB

You'd expect to run out of memory eventually if you keep adding plugins. In your case, 33554432 bytes is exactly 32MB, which is four times as generous as expected above. But your web host may still allow you to increase. If not, it might be time to move web hosts. Good luck.

七堇年 2024-12-29 16:53:20

停用所有插件并一一激活以查找有问题的插件。

这就是我要做的。

  • 将插件文件夹重命名为 /plugin_off/
  • 尝试登录 wp-admin,如果问题与插件有关,您将能够登录。
  • 转到插件页面,所有插件将被停用(因为文件不存在)。
  • 将 Plugin 文件夹重命名回 /plugin/
  • 逐一激活插件,直到遇到同样的问题。
  • 问题发生前激活的最后一个会造成麻烦。 (您可以决定不使用它,或者检查插件论坛以查看类似问题,或者将内存限制增加到 64MB,然后自己尝试或调试插件。)

Deactivate all plugins and activate one by one to find the problematic plugin.

Here is what I would do.

  • Rename the Plugin folder to say /plugin_off/
  • Try to login to wp-admin and if the issue is with plugins you will be able to login.
  • Go to the Plugins page and all the plugins will be deactivated(because files are not there).
  • Rename the Plugin folder back to /plugin/
  • Activate plugins one by one till you get the same issue.
  • The last one activated before issue is causing trouble. (You can either decide not to use it or check plugin forum to see similar issue or increase memory limit to say 64MB and try or debug the plugin yourself.)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文