From 84cc04a2c6b4e1e4524506a6cc66c38a16ff190c 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 1a56019f321..25fde52dd58 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]);