Cakephp Media插件问题

时间:2011-03-02 17:47:00

标签: cakephp plugins cakephp-1.3

我正在尝试使用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

1 个答案:

答案 0 :(得分:2)

使用cake加载配置文件Configure :: load()要求配置位于名为$ config

的变量中

例如

<?php 
$config['Meh'] = array('foo' => 'bar');
?>