我正在尝试使用Media Plugin(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
答案 0 :(得分:2)
使用cake加载配置文件Configure :: load()要求配置位于名为$ config
的变量中例如
<?php
$config['Meh'] = array('foo' => 'bar');
?>