tbrehm
2009-04-24 c30aaf59f0559bb4a83a1287c8137d03e5c07006
Set wait time in server.php to 1200 seconds.
1 files modified
4 ■■■■ changed files
server/server.php 4 ●●●● patch | view | raw | blame | history
server/server.php
@@ -54,7 +54,7 @@
// Check if another process is running
if(is_file($conf["temppath"].$conf["fs_div"].".ispconfig_lock")){
  clearstatcache();
  for($i=0;$i<120;$i++){ // Wait max. 1200 sec, then proceed
  for($i=0;$i<1200;$i++){ // Wait max. 1200 sec, then proceed
    if(is_file($conf["temppath"].$conf["fs_div"].".ispconfig_lock")){
      $app->log("There is already a lockfile set. Waiting another 10 seconds...", LOGLEVEL_DEBUG);
      sleep(10);
@@ -127,4 +127,4 @@
die("finished.\n");
?>
?>