c:\wamp\drupal\includes\database.mysqli.inc 第 114 行超出了 30 秒的最大执行时间

发布于 2024-12-10 14:50:06 字数 255 浏览 0 评论 0原文

当我在 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 技术交流群。

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

发布评论

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

评论(4

宛菡 2024-12-17 14:50:06

您收到的错误是因为 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.

蔚蓝源自深海 2024-12-17 14:50:06

更改脚本的时间限制(例如使用 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.

守不住的情 2024-12-17 14:50:06

我只是编辑了 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

夏末的微笑 2024-12-17 14:50:06

我尝试更改 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 tried ini_set('max_execution_time', 0); at the top of my file, it worked and the problem was solved.

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