40 lines
757 B
PHP
40 lines
757 B
PHP
<?php
|
|
|
|
/*
|
|
* Bludit
|
|
* https://www.bludit.com
|
|
* Author Diego Najar
|
|
* Bludit is opensource software licensed under the MIT license.
|
|
*/
|
|
|
|
// Check if Bludit is installed
|
|
if( !file_exists('bl-content/databases/site.php') )
|
|
{
|
|
header('Location:./install.php');
|
|
exit('<a href="./install.php">Install Bludit first.</a>');
|
|
}
|
|
|
|
// Load time init
|
|
$loadTime = microtime(true);
|
|
|
|
// Security constant
|
|
define('BLUDIT', true);
|
|
|
|
// Directory separator
|
|
define('DS', DIRECTORY_SEPARATOR);
|
|
|
|
// PHP paths for init
|
|
define('PATH_ROOT', __DIR__.DS);
|
|
define('PATH_BOOT', PATH_ROOT.'bl-kernel'.DS.'boot'.DS);
|
|
|
|
// Init
|
|
require(PATH_BOOT.'init.php');
|
|
|
|
// Admin area
|
|
if($Url->whereAmI()==='admin') {
|
|
require(PATH_BOOT.'admin.php');
|
|
}
|
|
// Site
|
|
else {
|
|
require(PATH_BOOT.'site.php');
|
|
} |