2

我刚刚创建了一个使用 cake bake 的应用程序,当我运行它时,我得到一个屏幕,'Sweet, myApp got baked'但上面没有样式,并且在底部我收到以下错误:

Fatal Error (256): ConnectionManager::getDataSource - Non-existent data source default [CORE\cake\libs\model\connection_manager.php, line 102]

我已经配置了我的数据库和用户等。但我不明白发生了什么。

有人可以帮忙吗?

4

2 回答 2

7

您可能输入了 Cake 的烘焙向导的名称。将 app/config/database.php 中的该名称替换为 "$default" 因此,

var $blog = array(...);

变成

var $default = array(...);
于 2011-03-29T01:27:41.203 回答
3

I've just fixed similar bug on my site. Check if all tables in the DB are there. My problem was missing table after db import . Good luck :)

于 2011-07-14T21:14:46.637 回答