3

我试图让这个 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);
}

文件结尾

4

2 回答 2

10

检查 index.php 的第 59 行,您会看到类似

//define('CAKE_CORE_INCLUDE_PATH', ROOT . DS . 'lib');

取消注释该行,如果它不起作用,则将完整路径硬编码到您的 lib/ 文件夹,该路径包含一个包含所有 CakePHP 库的 Cake 文件夹。

于 2012-08-02T12:50:01.833 回答
1

如果要将 CakePHP 项目从一个目录复制到另一个目录,请确保复制所有必需的目录。

在将我的项目从旧目录复制到新目录时,我错误地忽略了 CakePHP 的/lib目录,认为它包含不必要的 git 或日志文件。

我错了,将目录复制/lib到新项目目录为我解决了致命错误。

于 2014-09-13T06:24:15.477 回答