I need to increase my program run time beyond the default 300 seconds. Is there a way to do that in the control panel or do I have to submt a trouble ticket?
Thanks.
Thanks.
// Echo a page that'll request the new batch after a sec.
if ($start > $total)
{
echo '
<html>
<head>
</head>
<body>
We\'re done =)
</body>
</html>';
}
else
{
echo '
<html>
<head>
<meta http-equiv="refresh" content="1; url=', $_SERVER['PHP_SELF'], '?start=', $n, '">
</head>
<body>
In 1 sec will start the batch from ', $n, ' to ', ($n + 5), '.
</body>
</html>';
}
Comment