fixed redirect loop

This commit is contained in:
HB9HIL
2024-07-09 12:58:24 +02:00
parent 9946534a00
commit 345b73c267

View File

@@ -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/';