unfuck pls

This commit is contained in:
flash 2015-03-08 05:26:26 +01:00
parent 6aadd5e0d5
commit a12f267d3d

View file

@ -10,20 +10,23 @@ ob_start();
// Define Sakura version // Define Sakura version
define('SAKURA_VERSION', '20150221'); define('SAKURA_VERSION', '20150221');
// Define Sakura Path
define('ROOT_DIRECTORY', str_replace('_sakura', '', dirname(__FILE__)));
// Error Reporting: 0 for production and -1 for testing // Error Reporting: 0 for production and -1 for testing
error_reporting(-1); error_reporting(-1);
// Include Configuration // Include Configuration
require_once 'config/config.php'; require_once ROOT_DIRECTORY .'config/config.php';
// Include libraries // Include libraries
require_once 'vendor/autoload.php'; require_once ROOT_DIRECTORY .'vendor/autoload.php';
require_once 'components/Main.php'; require_once ROOT_DIRECTORY .'components/Main.php';
require_once 'components/Hashing.php'; require_once ROOT_DIRECTORY .'components/Hashing.php';
require_once 'components/Configuration.php'; require_once ROOT_DIRECTORY .'components/Configuration.php';
// Generate path to database driver // Generate path to database driver
$_DBNGNPATH = 'components/database/' . $fiiConf['db']['driver'] . '.php'; $_DBNGNPATH = ROOT_DIRECTORY .'components/database/' . $fiiConf['db']['driver'] . '.php';
// Include database driver // Include database driver
if(file_exists($_DBNGNPATH)) if(file_exists($_DBNGNPATH))