我试图让这个 cakephp 项目在我的本地主机上运行,但总是收到一些错误消息
我收到此错误消息:
警告:include(Cake\bootstrap.php) [function.include]:无法打开流:第 77 行的 C:\wamp\www\cts\app\webroot\index.php 中没有这样的文件或目录
警告:include() [function.include]:在 C 中打开 'Cake\bootstrap.php' 以包含 (include_path='C:\wamp\www\cts\lib;.;C:\php\pear') 失败: \wamp\www\cts\app\webroot\index.php 在第 77 行
致命错误:找不到 CakePHP 核心。检查 APP/webroot/index.php 中 CAKE_CORE_INCLUDE_PATH 的值。它应该指向包含你的 \cake 核心目录和你的 \vendors 根目录的目录。在第 86 行的 C:\wamp\www\cts\app\webroot\index.php
结尾
代码* Index.php 文件:
if (!defined('CAKE_CORE_INCLUDE_PATH')) {
if (function_exists('ini_set')) {
ini_set('include_path', ROOT . DS . 'lib' . PATH_SEPARATOR . ini_get('include_path'));
}
/**line 77**/
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)) {
/**line 86**/
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);
}
文件结尾