改变权重块 drupal 6
我的网站中有 300 个块,当我想更改块的权重时,JavaScript 崩溃了,现在我无法对任何块进行更改。我现在如何对块进行更改?
有没有办法更改 admin/builds/block 以在一页中显示任何区域?
I have 300 blocks in my site and when I wanted to change the weight of a block, JavaScript crashed and now I can't make changes to any blocks. How can I make a change to a block now?
Is there a way to change admin/builds/block to show any region in 1 page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
禁用 JavaScript,您将能够再次对块进行排序。
Disable the javascript you will be able to sort your blocks again.
这适用于 Drupal 7,也可能适用于 Drupal 6:尝试增加 php.ini 中的 max_input_vars 值。在我的例子中,将该值设置为 2000(Windows Server 2008/IIS/MySQL/PHP5.3 和超过 200 个 Drupal 块)。
WIMP 故障排除提示:
在 php.ini 中,设置:
error_log=C:\Windows\temp\php_errors.log
在 php_errors.log 中,查找如下消息:
“PHP 警告:未知:输入变量超出 1000。要增加限制,请更改 php.ini 中的 max_input_vars。第 0 行未知”
This worked for Drupal 7 and may work for Drupal 6: Try increasing the max_input_vars value in php.ini. Setting that value to 2000 worked in my case (Windows Server 2008/IIS/MySQL/PHP5.3 and over 200 Drupal blocks).
Troubleshooting tips for WIMP:
In php.ini, set:
error_log=C:\Windows\temp\php_errors.log
In php_errors.log, look for a message such as:
"PHP Warning: Unknown: Input variables exceeded 1000. To increase the limit change max_input_vars in php.ini. in Unknown on line 0"