forked from openemr/openemr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
25 lines (21 loc) · 855 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?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'];
else if (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 '$site_id' contains invalid characters.");
require_once "sites/$site_id/sqlconf.php";
if ($config == 1) {
header("Location: interface/login/login_frame.php?site=$site_id");
} else {
header("Location: setup.php?site=$site_id");
}