意外的连接重置:PHP或Apache问题?

前端之家收集整理的这篇文章主要介绍了意外的连接重置:PHP或Apache问题?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个 PHP脚本,每次都停在同一个地方,我的浏览器报告:

The connection to the server was reset
while the page was loading.

我在Firefox和IE上测试了这个,同样的事情发生了.所以,我猜这是一个Apache / PHP配置问题.这里有一些我设定的东西.

PHP.ini

max_execution_time = 300000 
max_input_time = 300000
memory_limit = 256M

Apache(httpd.conf)

Timeout 300000
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 0

以上是否正确?可能导致这种情况的原因是什么?

I am running PHP (5.2.12.12) as a
module on Apache (2.2) on a Windows
Server 2003.

这很可能是Apache或PHP问题,因为所有浏览器都做同样的事情.我认为脚本运行的时间恰好是10分钟(600秒).

我有一个类似的问题 – 结果是apache2是segfaulting.在Ubuntu 10.04 LTS上,段落故障的原因是5.35-1ubuntu4.14的PHP5-xdebug.删除xdebug修复了问题.
原文链接:https://www.f2er.com/php/136500.html

猜你在找的PHP相关文章