From 345b73c267bf648e8d3155082ea9fa1e6b49917f Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 9 Jul 2024 12:58:24 +0200 Subject: [PATCH] fixed redirect loop --- install/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/index.php b/install/index.php index a71d4c292..5891c6472 100644 --- a/install/index.php +++ b/install/index.php @@ -42,7 +42,7 @@ if (is_https()) { } global $installer_url; -$installer_url = $http_scheme . '://' . $_SERVER['HTTP_HOST'] . '/' . substr(str_replace(["index.php", "/install/"], "", $_SERVER['REQUEST_URI']), 1) . '/install'; +$installer_url = $http_scheme . '://' . $_SERVER['HTTP_HOST'] . '/' . substr(str_replace(["index.php", "/install/"], "/", $_SERVER['REQUEST_URI']), 1) . 'install'; // Config Paths $db_config_path = '../application/config/';