当 Drupal 中的主题信息模块占用过多内存来访问管理>>模块页面时,如何禁用它?
我还差十页才能完成《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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
两个选择。
这些应该可以“在紧要关头”禁用任何模块。 您还可以编辑 MAMP/WAMP 配置中的 php.ini 文件以暂时为其提供更多内存,但如果您在无法识别 php.ini 更改的共享主机上运行,则该技巧将不起作用。
Two options.
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.
首先应用伊顿的建议(我更喜欢第二个)。
然后增加 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.