本文介绍了Cake PHP致命错误(256)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚创建了一个应用程序使用蛋糕烘烤,当我运行它我得到的屏幕,说'甜,myApp烤了',但没有样式在底部我得到以下错误:

I have just created an application using cake bake and when I run it I get the screen that says 'Sweet, myApp got baked' but there are no styling on it and at the bottom I get the following error:

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

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

I've configure my database and user etc. But I don't understood what's going on.

任何人都可以帮助吗?

推荐答案

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

You likely entered a name for Cake's bake wizard.Replace that name in app/config/database.php with "$default"Thus,

var $blog = array(...);

成为

var $default = array(...);

这篇关于Cake PHP致命错误(256)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-22 03:26