最大执行时间问题

发布于 2024-10-21 21:15:16 字数 226 浏览 1 评论 0原文

我想增加最大执行力&我的 PHP 脚本的输入时间。我将以下两行添加到位于文档根目录的 .htaccess 文件中:

php_value max_execution_time 8000
php_value max_input_time 4000 

它在我的开发服务器上运行良好,但在生产服务器 (GoDaddy) 上我收到 500 内部服务器错误。为什么会这样呢?

I want to increase the maximum execution & input time for my PHP scripts. I added the following two lines to my .htaccess file located at the document root:

php_value max_execution_time 8000
php_value max_input_time 4000 

It works perfectly well on my development server, but on the production server (GoDaddy) I'm getting a 500 internal server error. Why is it so?

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

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

发布评论

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

评论(3

旧话新听 2024-10-28 21:15:16

也许您应该尝试将相同的代码放入 php5.ini 文件而不是 .htaccess 文件中。 Godaddy 服务器通常设置为接受 php5.ini 文件中的配置设置。

创建一个文件名为“php5.ini”的文本文件,并将以下内容放入其中:

max_execution_time 8000
max_input_time 4000

Perhaps you should try putting the same code into a php5.ini file instead of a .htaccess file. Godaddy servers are usually setup to accept configuration settings from php5.ini file.

Make a text file with the filename as "php5.ini" and put the following in it:

max_execution_time 8000
max_input_time 4000
你与清晨阳光 2024-10-28 21:15:16

如果我记得很久以前的 GoDaddy 客户,您必须使用自己的 php.ini 文件,因为他们的配置不支持 .htaccess 文件中的 PHP 标志。

If I remember right from a client with GoDaddy ages ago, you have to use your own php.ini file since their config doesn't support PHP flags in .htaccess files.

云醉月微眠 2024-10-28 21:15:16

php_value max_input_time 4000O - 最后一个字符是大写的 O,而不是零 0

php_value max_input_time 4000O- that last character is a capital O, not a zero 0.

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