上传文件已损坏

时间:2012-02-28 21:18:20

标签: php apache file-upload uploadify

我使用uploadify上传PHP 5.3.3和Apache 2.2.16服务器的文件。 *我使用的所有图像文件都很小< 1M

有趣的是,对于某些图像文件,uploadify可以正常工作并正确上传图像文件。但是对于其他人来说只上传了8个字节,这很奇怪。我不确定为什么上传的文件不完整。

Uploadify以某种方式表示该文件已成功上传,我也使用了onError函数。

如何找到问题的任何帮助都会非常有帮助。

上传代码:

$('#change_thumb_file').uploadify({
'hideButton'  : true,
'wmode'       : 'transparent',
'folder'      : VG.PROJECT_ROOT + '/static/apps/vialogues', 
    'uploader'    : VG.SITE_STATIC_URL+'uploadify/scripts/uploadify.swf',
    'script'      : VG.APPS_STATIC_URL+"vialogues/php/uploadify.php",
    'buttonText'  : 'Select an image',
    'cancelImg'   : VG.SITE_STATIC_URL+'uploadify/cancel.png',
    'auto'        :  true,
    'sizeLimit'   :  5242880,
    'queueID'     : 'fileQueue',
    'scriptAccess': 'always',
    'method'      : 'POST',
    'queueSizeLimit' : 1,
    'width'       : '100',
    'height'      : '30',
    'fileDesc'    : 'images',
    'fileExt'     : '*.jpg;*.jpeg;*.png;*.bmp;*.gif',
    'wmode'       : 'transparent',
    'altContent'  : '<div id="flash_notice">Flash player version 10.0.0 or above is required to upload a video. Please click the icon below to download Flash player.\
            <br /><a href="https://www.adobe.com/go/getflashplayer">\
            &nbsp;<img src="' + VG.SITE_STATIC_URL + 'uploadify/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33">\
            </a>\
            </div>',
    'onComplete' : function (event, queueID, fileObj, response, data){
        preview_uri = response.replace(VG.PROJECT_ROOT, '');
        $.ajax({
            url:VG.SITE_URL + 'vialogues/api/crop_thumbnail',
            type:'PUT',
            data: {'img': preview_uri}, 
            success: function(data){
                $('#thumb_preview').empty().append('<img src="'+preview_uri+'" />');
            },
            failure: function() {alert("There was an unexpected error. Please try again."); window.location.reload()},
        });
        $('#step_two').fadeIn();
    },               
    'onError' : function(event, queueID, fileObj, errorObj) {
              var errMsg = "There was an error uploading ... \n";
              errMsg += "Error type: " + errorObj.type + "\n";
              errMsg += "Error Info: " + errorObj.info + "\n";
              alert(errMsg);
            }
});

执行文件上传的代码(uploadify.php):

if (!empty($_FILES)) {
$tempFile = $_FILES['Filedata']['tmp_name'];
$targetPath = $_REQUEST['folder'] . '/';
$targetFile =  str_replace('//','/',$targetPath) . $_FILES['Filedata']['name'];

$fileTypes  = str_replace('*.','',$_REQUEST['fileext']);
$fileTypes  = str_replace(';','|',$fileTypes);
$typesArray = split('\|',$fileTypes);
$fileParts  = pathinfo($_FILES['Filedata']['name']);

if (in_array($fileParts['extension'],$typesArray)) {

    $result = move_uploaded_file($tempFile,$targetFile);
    if ($result) {
        echo str_replace($_SERVER['DOCUMENT_ROOT'],'',$targetFile);         
    }
    else {
        echo 'Upload Failed';
    }
} else {
    echo 'Invalid file type.';
}

}

1 个答案:

答案 0 :(得分:0)

因为权限问题,所以问题正在发生。我所做的解决方法是在根目录中创建一个单独的文件夹,并为运行apache的www-data用户提供显式权限。不知何故,move_uploaded_file没有为权限抛出任何错误。