我正在尝试在我的 CakePHP 项目中使用这个 jQuery File Upload 插件:http: //blueimp.github.io/jQuery-File-Upload/ 该演示工作正常,当我放置“服务器”时它也适用于我的 CakePHP 项目我的 CakePHP webroot 目录中插件的文件夹。但这样它会上传 webroot/server/php/files 中的图像。我希望能够上传 webroot/img 中的文件,因为这是 CakePHP 用于图像的目录。
我找到了以下配置行,但我不知道如何更改此参数以提高几个级别,或者从 webroot 开始。似乎这取决于脚本文件所在的位置,我对这个变量真的很不好,有人可以帮助我吗?
function __construct($options = null, $initialize = true, $error_messages = null)
{$this->options = array(
'script_url' => $this->get_full_url().'/',
'upload_dir' => dirname($this->get_server_var('SCRIPT_FILENAME')).'/files/',
'upload_url' => $this->get_full_url().'/files/'