This commit is contained in:
2026-03-02 02:07:04 +01:00
parent e42fdf9595
commit 674dfe0968

View File

@@ -29,9 +29,14 @@ spl_autoload_register(function ($class) {
require_once __DIR__ . '/../src/App/functions.php';
// 3. Konfiguration laden (nur Root-Dateien; Sync kopiert staging/prod hierher)
$domainFile = __DIR__ . '/domaindata.php';
$settingsFile = __DIR__ . '/settings.php';
$configFile = __DIR__ . '/db.php';
if (file_exists($domainFile)) {
require_once $domainFile;
}
if (file_exists($settingsFile)) {
require_once $settingsFile;
}