Chrome Ajax 请求在 120 秒后超时?
我不确定这是一个错误还是配置错误,但我总是在 120 秒时收到“取消”的 ajax 请求。没有给出 http 响应代码。
服务器端在 LAMP 堆栈上运行,并且使用 mod_php5 将 php max_execution_time 设置为 240 秒。
奇怪的是,如果我在没有 ajax 的情况下请求同一页面,它不会在 120 秒后超时。
早期测试表明 Firefox 也能做同样的事情。
任何人都可以帮助解决这个错误/烦恼吗?
示例代码
set_timeout_limit(o);
sleep(1000);
I am not sure if it is a bug or configuration error but I keep getting ajax requests "canceled" at exactly 120 seconds. No http response code given.
The server side is running on a LAMP stack and the php max_execution_time is set to 240 seconds using mod_php5
Oddly enough, if I request the same page without ajax, it won't timeout after 120 seconds.
Early tests shows that firefox does the same thing.
Can anyone help with this bug/annoyance?
Sample code
set_timeout_limit(o);
sleep(1000);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将
timeout: xxx
(以毫秒为单位)添加到您的 AJAX 调用示例中:
try to add
timeout: xxx
(in ms) to your AJAX callexample:
我已经遇到了你的问题!我使用 set_time_limit(0) 但我的脚本在 630 秒后停止!我在这个问题上花了很长时间,我发现服务器防火墙杀死了我的进程!也许你的问题也是这个!如果你访问你的服务器 WHM 转到进程管理器并查看您的进程! ;)
I already had your problem!I use set_time_limit(0) but my script stop after 630 Seconds!i put long time on this problem and i figure out that server firewall kill my process!maybe your problem is this too!if you access to your server WHM go to Process manager and take a look at your process! ;)