*/ // Declare namespace namespace Sakura; // Start output buffering ob_start(); // Define Sakura version define('SAKURA_VERSION', '20150329'); // Define Sakura Path define('ROOT_DIRECTORY', str_replace('_sakura', '', dirname(__FILE__))); // Error Reporting: 0 for production and -1 for testing error_reporting(-1); // Include Configuration require_once ROOT_DIRECTORY .'_sakura/config/config.php'; // Include libraries require_once ROOT_DIRECTORY .'_sakura/vendor/autoload.php'; require_once ROOT_DIRECTORY .'_sakura/components/Main.php'; require_once ROOT_DIRECTORY .'_sakura/components/Hashing.php'; require_once ROOT_DIRECTORY .'_sakura/components/Configuration.php'; require_once ROOT_DIRECTORY .'_sakura/components/Sessions.php'; require_once ROOT_DIRECTORY .'_sakura/components/Users.php'; // Generate path to database driver $_DBNGNPATH = ROOT_DIRECTORY .'_sakura/components/database/'. $sakuraConf['db']['driver'] .'.php'; // Include database driver if(file_exists($_DBNGNPATH)) require_once $_DBNGNPATH; else die('