Cakephp 媒体插件问题
我正在尝试使用媒体插件(http://www.ohloh.net/p/cakephp-media)
我将媒体文件夹内容放在 app/plugins/media 中,
然后放在添加的 app/config/ 文件夹中的 bootstrap.php 中下面的代码。
Configure::load('media.core');
现在,当我运行任何控制器和任何操作时都会收到以下错误。
Configure::load() - no variable $config found in core.php [CORE\cake\libs\configure.php, line 266]
我正在使用 Cakephp 1.3.7
I am trying to use the Media Plugin (http://www.ohloh.net/p/cakephp-media)
I placed the media folder contents in app/plugins/media
then in bootstrap.php in the app/config/ folder added the following code.
Configure::load('media.core');
Now when i run any controller and any action am getting the following error.
Configure::load() - no variable $config found in core.php [CORE\cake\libs\configure.php, line 266]
I am using Cakephp 1.3.7
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用蛋糕加载配置文件Configure::load() 要求配置位于名为 $config 的变量中,
例如
loading config files with cakes Configure::load() has a requirement that the configs be in a variable called $config
eg