0

我正在尝试在我的 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/'
4

1 回答 1

0

请尝试在选项中更改此代码。

$this->options = array(
'script_url' => $this->get_full_url().'/',            
'upload_dir' => WWW_ROOT.'/img/',
'upload_url' => $this->get_full_url().'/img/'
于 2013-09-26T07:55:40.907 回答