You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
917 B
29 lines
917 B
2 years ago
|
<?php
|
||
|
|
||
|
// This program is free software; you can redistribute it and/or
|
||
|
// modify it under the terms of the GNU General Public License
|
||
|
// as published by the Free Software Foundation; either version 2
|
||
|
// of the License, or (at your option) any later version.
|
||
|
// Set the site ID if required. This must be done before any database
|
||
|
// access is attempted.
|
||
|
|
||
|
if (!empty($_GET['site'])) {
|
||
|
$site_id = $_GET['site'];
|
||
|
} elseif (is_dir("sites/" . $_SERVER['HTTP_HOST'] ?? '')) {
|
||
|
$site_id = $_SERVER['HTTP_HOST'] ?? '';
|
||
|
} else {
|
||
|
$site_id = 'default';
|
||
|
}
|
||
|
|
||
|
if (empty($site_id) || preg_match('/[^A-Za-z0-9\\-.]/', $site_id)) {
|
||
|
die("Site ID '" . htmlspecialchars($site_id, ENT_NOQUOTES) . "' contains invalid characters.");
|
||
|
}
|
||
|
|
||
|
require_once "sites/$site_id/sqlconf.php";
|
||
|
|
||
|
if ($config == 1) {
|
||
|
header("Location: interface/login/login.php?site=$site_id");
|
||
|
} else {
|
||
|
header("Location: setup.php?site=$site_id");
|
||
|
}
|