我的 cakePHP 文件夹中有两个“应用程序”,如何告诉 Cake 从“another_app”中检索内容?
/app
/another_app
我认为不可能在同一个 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');
}
您可以使用 CakePHP 标准方法:Media Views,但这只会检索您app
目录中的资产(不一定webroot
)。你可以试试MeioUpload,它的一些功能说:
* Accepts custom directory for files to be uploaded;
所以我认为你应该检查一下。
编辑
您想从两个应用程序中检索资产吗?或者只有两个应用程序并启用其中一个?