最大执行时间问题
我想增加最大执行力&我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
也许您应该尝试将相同的代码放入 php5.ini 文件而不是 .htaccess 文件中。 Godaddy 服务器通常设置为接受 php5.ini 文件中的配置设置。
创建一个文件名为“php5.ini”的文本文件,并将以下内容放入其中:
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:
如果我记得很久以前的 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.
php_value max_input_time 4000O
- 最后一个字符是大写的O
,而不是零0
。php_value max_input_time 4000O
- that last character is a capitalO
, not a zero0
.