From c4ef21a8f22f5d83907b063c5d391e950baa8bfe Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 21 Sep 2020 14:04:07 +0200 Subject: [PATCH] Increase timeout delay for install --- htdocs/install/step2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/install/step2.php b/htdocs/install/step2.php index 5b794b781bd..4f4accf6fa7 100644 --- a/htdocs/install/step2.php +++ b/htdocs/install/step2.php @@ -39,7 +39,7 @@ $ok = 0; $err = error_reporting(); error_reporting(0); // Disable all errors //error_reporting(E_ALL); -@set_time_limit(900); // Need 900 on some OS like Windows 7/64 +@set_time_limit(1800); // Need 1800 on some very slow OS like Windows 7/64 error_reporting($err); $action = GETPOST('action', 'aZ09') ?GETPOST('action', 'aZ09') : (empty($argv[1]) ? '' : $argv[1]);