当 Drupal 中的主题信息模块占用过多内存来访问管理>>模块页面时,如何禁用它?

发布于 2024-07-26 20:54:08 字数 215 浏览 6 评论 0原文

我还差十页才能完成《Using Drupal》,但我陷入了困境。 我打开了主题信息模块来帮助进行主题定制。 但是,我无法再访问管理>>模块页面来打开/关闭模块(包括主题信息模块)。 它会显示这个白色错误页面,表明它尝试访问大约是允许的两倍的内存。 我可以重新安装 Drupal,但如果这是唯一的解决方案,那就太蹩脚了。

任何帮助将不胜感激!

-落在

I'm TEN pages from finishing Using Drupal and I'm stuck. I turned on the Theme Info module to aid in theme customization. However, I can no longer access the admin>>modules page to turn on/off modules (including the Theme Info module). It brings up this white error page that says it tried to access about twice as much memory as is allowed. I could reinstall Drupal, but it'd be pretty lame if that's the only solution.

Any help would be greatly appreciated!

-Landon

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

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

发布评论

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

评论(2

话少心凉 2024-08-02 20:54:08

两个选择。

  • 从模块目录中完全删除“Devel”模块。 重新加载页面。 瞧! 没有主题信息模块。 缺点:如果您将模块拖回,它仍然会启用。
  • 打开 PHPMyAdmin(如果您使用的是 MAMP、WAMP 或安装了它的服务器)并运行以下查询: UPDATE system SET status = 0 WHERE name = 'devel_themer';

这些应该可以“在紧要关头”禁用任何模块。 您还可以编辑 MAMP/WAMP 配置中的 php.ini 文件以暂时为其提供更多内存,但如果您在无法识别 php.ini 更改的共享主机上运行,​​则该技巧将不起作用。

Two options.

  • Remove the 'Devel' module from your modules directory entirely. Reload the page. Voila! No Theme Info module. Downside: If you drag the module back in, it will still be enabled.
  • Open PHPMyAdmin (if you're using MAMP, WAMP, or a server that has it installed) and run the following query: UPDATE system SET status = 0 WHERE name = 'devel_themer';

Those should work to disable any module "in a pinch." You can also edit the php.ini file in your MAMP/WAMP configuration to give it more memory temporarily, though that trick won't work if you're running on a shared host that doesn't recognize php.ini changes.

屌丝范 2024-08-02 20:54:08

首先应用伊顿的建议(我更喜欢第二个)。

然后增加 php.ini 配置中的内存限制(通常是 /etc/php5/apache2/php.ini)。 仅针对该模块的 WSOD 意味着每个脚本确实没有足够的 RAM 来处理任何严重的事情:现在大多数配置至少需要 32M。

First apply Eaton's suggestion (I prefer the second one).

Then increase memory_limit in your php.ini config (usually /etc/php5/apache2/php.ini). A WSOD for just that module means you really don't have enough RAM per script for anything serious: most configurations these days needs 32M at least.

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