mirror of
https://github.com/ManfredAabye/OpenSim-Viewer-Webinterface.git
synced 2026-08-14 08:53:07 +00:00
11 lines
303 B
PHP
11 lines
303 B
PHP
<?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;
|
|
?>
|