我正在尝试将Uploadify实施到我的网站项目中,该项目已经有一个非常基本的文件上传系统。我有uploadify配置为提交表单帖子,后者转移到后端上传PHP脚本来上传和排序图像。但是,上传后我什么都没得到,$ _FILES数组完全空白,而且上传论坛和文档根本没有帮助。这是我的代码:
前端上传页面
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"> </script>
<script type="text/javascript" src="/modules/default/themes/uploadify/jquery.uploadify- 3.1.min.js"></script>
<script type="text/javascript">
$(function() {
$('#file_upload').uploadify({
'fileTypeDesc' : 'Image Files',
'fileTypeExts' : '*.jpg; *.jpeg; *.png; *.gif',
'method' : 'post',
'auto' : false,
'swf' : '/modules/default/themes/uploadify/uploadify.swf',
'uploader' : '/modules/default/themes/uploadify/uploadify.php',
'onUploadComplete' : function(file, event, ID, fileObj, response, data) {
$('#pff').submit();
},
});
});
//Further down the line
<form action="<?php echo $this->url('upload')?>" method="post" id="pff" enctype="multipart/form-data">
<div class="uploadfield">
<input type="file" name="pics" id="file_upload" />
</div>
</form>
<a href="javascript:$('#file_upload').uploadify('upload')">Upload Files</a>
后端PHP上传脚本段
$errors = array();
$uploaded = array();
$ids = array();
$public = $this->app->config->upload_public_default;
$user = $this->app->userSession->user;
$gallery = $this->app->getParamInt('gallery_id');
$userid = $user->user_id;
if(!empty($_FILES['Filedata']['tmp_name']) && $this->app->config->allow_uploads){
//Code to upload the images to the user accounts
}
我已经尝试了几个小时的各种不同的东西,以及来自不同网站和论坛的大量建议。没有任何工作或给我一些暗示尚未做的事情。我似乎无法将文件传递给脚本。
答案 0 :(得分:0)
我不确定uploadify是如何工作的,但很确定这不起作用
<input type="file" name="pics"...
和
if(!empty($_FILES['Filedata']['tmp_name'])...
您要发送一个名称为pics
的文件并使用名称Filedata
进行检查,该文件无效,您必须使用与$_FILES['pics]
相同的名称
答案 1 :(得分:0)
可能的原因之一可能是文件上传大小限制。
首先检查phpinfo中'upload_max_filesize','post_max_size'的值
如果文件大小超过设置的限制,则可能导致$ _FILES数组为空白
参考:http://webparticles.wordpress.com/2011/08/28/uploadify-_files-array-is-empty/