c:\wamp\drupal\includes\database.mysqli.inc 第 114 行超出了 30 秒的最大执行时间
当我在 drupal 6 中的站点/所有/模块文件夹中提取 .ZIP 文件(模块,例如 Ubercart、cck)并尝试从管理->模块中启用它时,当我单击“保存配置”时。我收到错误如图所示。
为什么会发生这种情况? 是否需要编辑database.mysqli.inc
如何纠正它..请帮助。
谢谢。! 在此处输入图片描述
When i extract .ZIP files(Modules e.g Ubercart,cck) on sites/all/modules Folder in drupal 6 and try to enable it from admin->modules and when i click 'save configuration.' i got the errors As shown in image.
why this happens ??
Is it require to edit database.mysqli.inc
How to correct it.. Please help.
thank you.!
enter image description here
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您收到的错误是因为 PHP 脚本的执行次数超出了您的设置允许的范围。尝试在 php.ini 中设置
max_execution_time=180
或更高值,然后重新启动 Web 服务器。The error you're receiving is because the PHP script was executing more than it's allowed by your settings. Try setting
max_execution_time=180
or higher in php.ini and restart your web server.更改脚本的时间限制(例如使用 set_time_limit()),尝试一次处理大块数据而不是一个大文件(并预先检查),或者尝试优化代码,这样执行起来就不会太久。
Either change the time limit for your scripts (e.g. using set_time_limit()), try to process chunks of data instead of one big file at once (and check up front) or try to optimize the code so it takes not so long to execute.
我只是编辑了 site/default/settings.php 并添加了以下行:
ini_set('max_execution_time', 0);
作者:
基思·阿德勒
https://drupal.org/node/66105
I simply edited sites/default/settings.php and added the following line:
ini_set('max_execution_time', 0);
by:
Keith Adler
https://drupal.org/node/66105
我尝试更改
max_execution_time=30
的参数并将其设置为更大的值。那没有用。但是当我在文件顶部尝试ini_set('max_execution_time', 0);
时,它起作用了并且问题得到了解决。I tried changing the parameters for
max_execution_time=30
and setting it for a greater value. That did not work. But when I triedini_set('max_execution_time', 0);
at the top of my file, it worked and the problem was solved.