if (!defined(‘DS’)) {
define(‘DS’, DIRECTORY_SEPARATOR);
}
if (!defined(‘ROOT’)) {
define(‘ROOT’, dirnamedirname(FILE));
}
if (!defined(‘APP_DIR’)) {
define(‘APP_DIR’, basenamedirname(FILE));
}
define(‘CAKE_CORE_INCLUDE_PATH’, ROOT . DS . ‘vendors’ . DS . ‘cakephp’ . DS . ‘cakephp’ . DS . ‘lib’);
if (!defined(‘WEBROOT_DIR’)) {
define(‘WEBROOT_DIR’, basenameFILE);
}
if (!defined(‘WWW_ROOT’)) {
define(‘WWW_ROOT’, dirname(FILE) . DS);
}
if (php_sapi_name() === ‘cli-server’) {
if ($_SERVER‘REQUEST_URI’ !== ‘/’ && file_exists(WWW_ROOT . $_SERVER‘PHP_SELF’)) {
return false;
}
$_SERVER‘PHP_SELF’ = ‘/’ . basename(FILE);
}
if (!defined(‘CAKE_CORE_INCLUDE_PATH’)) {
if (function_exists(‘ini_set’)) {
ini_set(‘include_path’, ROOT . DS . ‘lib’ . PATH_SEPARATOR . ini_get(‘include_path’));
}
if (!include ‘Cake’ . DS . ‘bootstrap.php’) {
$failed = true;
}
} else {
if (!include CAKE_CORE_INCLUDE_PATH . DS . ‘Cake’ . DS . ‘bootstrap.php’) {
$failed = true;
}
}
if (!empty($failed)) {
trigger_error(“CakePHP core could not be found. Check the value of CAKE_CORE_INCLUDE_PATH in APP/webroot/index.php. It should point to the directory containing your ” . DS . “cake core directory and your ” . DS . “vendors root directory.”, E_USER_ERROR);
}
App::uses(‘Dispatcher’, ‘Routing’);
$Dispatcher = new Dispatcher();
$Dispatcher->dispatch(
new CakeRequest(),
new CakeResponse()
);
