English 中文(简体)
使用 PHP 在程序间切换程序以避免 ERVER 超时
原标题:Using PHP to toggle between programs to avoid SERVER timeout

我有一个问题,它与其他许多版本相关,但有一些关键差异。我有一个PHP脚本,每15分钟(900秒秒)需要做一些一般工作(从数据库中删除一个图普),每15分钟(900秒)。这需要反复地完成。所以,我用设定时间_时间限制(0)来阻止PHP退出时间。应用程序对第一次迭代完全有效,然后因为服务器不让脚本运行超过1000秒而被击倒。我设想了一个工作变通办法,但不确定如何实际写成它。我需要一个脚本来做一些普通工作(从数据库中删除一个图普尔),每9分钟(900秒)需要做一些普通工作(从数据库中删除一个图普尔),每9000秒(900秒)需要完成一次。所以我需要它来启动工作程序,而睡眠程序需要结束。然后,它需要重新启动睡眠程序,工作程序需要结束。这样,剧本就不会运行超过1000秒(一次迭代)了。我曾经尝试使用过一个脚本,包括,头和其他一些东西,但是没有那么幸运。鉴于这个程序对我的工作有多重要,所以任何帮助。

问题回答

您是否知道您可以在没有浏览器等待页面的情况下从命令行运行您的 PHP 脚本? 如果您有该脚本运行, 而不是作为 CGI 运行, 它就不会在1000 秒限制之内。 它甚至可以被调用每15分钟用拐针完成它的工作 。

- 好吧,我自己想通了,这里有一个样本代码:

链质测试 :

<html>
<body onload="form1.submit()">
<form id="form1" action="chaintest2.php" method="post">
</form>
<?php
print"Begun";
sleep(5);
?>
</body>
</html>

链路测试2:

<html>
<body onload="form1.submit()">
<form id="form1" action="chaintest.php" method="post">
</form>
<?php
print"PHP excecuted";
sleep(5);
?>

此代码会不停地回弹( 打印开始并执行 PHP ) 。 它不会通过 PHP 或服务器超时 。





相关问题
Data Driven Subscription times out on connection

I have a data driven subscription which each time it runs shows a "pending" status in the Report Manager. Then after a little bit it errors with Error: Timeout expired. The timeout period ...

Determine if $.ajax error is a timeout

I m utilizing the magic of jQuery.ajax( settings ). However, I m wondering if anyone has played with the timeout setting much? I know it s basically for dictating the local time for a request, but ...

Sql Server SMO connection timeout not working

I have the following PowerShell code: function Get-SmoConnection { param ([string] $serverName = "", [int] $connectionTimeout = 0) if($serverName.Length -eq 0) { $...

Connection timeout issue sending email in Django

I read from http://www.packtpub.com/article/friends-via-email-social-web-application-django-1.0 and follow the steps: => And change my setting.py SITE_HOST = 127.0.0.1:8000 DEFAULT_FROM_EMAIL = ...

热门标签