2

我的 cakePHP 文件夹中有两个“应用程序”,如何告诉 Cake 从“another_app”中检索内容?

/app
/another_app
4

2 回答 2

0

我认为不可能在同一个 cakephp installataion 上有 2 个 APP_DIR。但是,要更改 index.php 中 APP_DIR 的值

// /app/webroot/index.php (partial, comments removed)


if (!defined('APP_DIR')) {
    define ('APP_DIR', 'another_app');
}

更多信息http://book.cakephp.org/1.3/en/The-Manual/Developing-with-CakePHP/Installation.html#advanced-installation

于 2013-02-19T12:28:35.570 回答
0

您可以使用 CakePHP 标准方法:Media Views,但这只会检索您app目录中的资产(不一定webroot)。你可以试试MeioUpload,它的一些功能说:

* Accepts custom directory for files to be uploaded;

所以我认为你应该检查一下。

编辑

您想从两个应用程序中检索资产吗?或者只有两个应用程序并启用其中一个?

于 2013-02-19T12:49:51.873 回答