ロード中...
 

NetCommons3_app_webroot_index.php

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()
);

カレンダー

December 2025
30 01 02 03 04 05 06
07 08 09 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31 01 02 03