Cakephp 媒体插件问题

发布于 2024-10-20 12:41:04 字数 399 浏览 2 评论 0原文

我正在尝试使用媒体插件(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱殇璃 2024-10-27 12:41:04

使用蛋糕加载配置文件Configure::load() 要求配置位于名为 $config 的变量中,

例如

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

loading config files with cakes Configure::load() has a requirement that the configs be in a variable called $config

eg

<?php 
$config['Meh'] = array('foo' => 'bar');
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文