我是CakePHP的新手,我正在嘗試安裝它。我抽出一切,創建所需的文件/文件夾,現在出現以下錯誤:include_once:無法打開流:沒有這樣的文件或目錄Cakephp 2.4.5
Warning (2): include_once(C:\xampp\htdocs\TravelBuddy\app\Config\database.php): failed to open stream: No such file or directory [CORE\Cake\Model\ConnectionManager.php, line 67]
Warning (2): include_once() [function.include]: Failed opening 'C:\xampp\htdocs\TravelBuddy\app\Config\database.php' for inclusion (include_path='C:\xampp\htdocs\TravelBuddy\lib;.;C:\xampp\php\PEAR') [CORE\Cake\Model\ConnectionManager.php, line 67]
文件database.php
不存在。我必須創建它嗎?
這裏是ConnectionManager
的代碼,其中的問題是:
protected static function _init() {
include_once APP . 'Config' . DS . 'database.php';
if (class_exists('DATABASE_CONFIG')) {
self::$config = new DATABASE_CONFIG();
}
self::$_init = true;
}
該警告訊息清楚地告訴您該文件不存在,您應該創建它並在其中寫入數據庫連接 –
請查看「APP」。 '配置'。 DS。 'database.php'是。也許'APP'常量沒有被正確定義 – cornelb