This commit is contained in:
ManfredAabye
2025-10-14 08:52:53 +02:00
committed by GitHub
parent 712124b866
commit b745c3eda5
29 changed files with 5194 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
// Emergency redirect to setup if no configuration exists
if (!file_exists('include/config.php') || !file_exists('include/env.php')) {
header('Location: setup.php');
exit;
}
// If configuration exists, redirect to welcome page
header('Location: welcomesplashpage.php');
exit;
?>