mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-07 23:21:59 +01:00
48 lines
820 B
PHP
48 lines
820 B
PHP
|
<?php
|
||
|
|
||
|
function go_to_setup() {
|
||
|
Header("Location: setup/setup.php");
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
$stat = stat("config.php") or go_to_setup();
|
||
|
if($stat[7] < 15){ go_to_setup(); }
|
||
|
|
||
|
|
||
|
require_once("config.php");
|
||
|
|
||
|
require(DIR_SYSTEM . "/startup.php");
|
||
|
|
||
|
|
||
|
$request = new Request();
|
||
|
Registry::set("request", $request);
|
||
|
|
||
|
|
||
|
session_start();
|
||
|
|
||
|
Registry::set('document', new Document());
|
||
|
|
||
|
|
||
|
$loader = new Loader();
|
||
|
Registry::set('load', $loader);
|
||
|
|
||
|
|
||
|
$language = new Language();
|
||
|
Registry::set('language', $language);
|
||
|
|
||
|
|
||
|
$db = new DB(DB_DRIVER, DB_HOSTNAME, DB_USERNAME, DB_PASSWORD, DB_DATABASE, DB_PREFIX);
|
||
|
Registry::set('DB_DATABASE', DB_DATABASE);
|
||
|
|
||
|
Registry::set('db', $db);
|
||
|
|
||
|
Registry::set('DB_DRIVER', DB_DRIVER);
|
||
|
|
||
|
$action = new Router('login/sso');
|
||
|
|
||
|
$controller = new Front();
|
||
|
$controller->dispatch($action, new Router('common/not_found'));
|
||
|
|
||
|
|
||
|
?>
|