uploadify在asp net mvc和iis 7.5上失败了一些文件

时间:2013-02-20 18:14:30

标签: jquery asp.net-mvc iis uploadify

有些文件是上传的其他文件 我认为这是一个上传大小限制所以我添加到我的web.config

<security>
  <requestFiltering>
    <requestLimits maxAllowedContentLength="524288000" maxUrl="32768" maxQueryString="32768" />
  </requestFiltering>
</security>

正如您在uploadfy中看到的那样:

'fileSizeLimit' : 500000

这就是我需要接受的文件&lt; = 500MB 我怎样才能找到失败的原因?

错误:

errorCode: 200
errorMsg: 413
errorString: HTTP 413 Error

UPLOADFY:

$('#file_upload').uploadify({
        'debug': true,
        'swf': '../../Components/uploadify/uploadify.swf',
        'uploader': '/Operacao/Upload',
        'auto': false,
        'buttonImage': '../../Images/uploadify/importar.jpg',
        'buttonClass': 'uploadifyBtn',
        'width': '210',
        'height': '21',
        'fileSizeLimit' : 500000,
        'onUploadStart' : function(file) {
            //return alert('Starting to upload ' + file.name);
        },
        'onFallback': function () {
            alert('Versão do flash não compativel com o sistema de upload. Favor contactar o administrador do sistema!');
        },
        'onUploadError' : function(file, errorCode, errorMsg, errorString) {
            alert('O arquivo ' + file.name + ' não pode ser importado: ' + errorCode + ' - ' + errorMsg + ' - ' + errorString);
        },
        'onSelectError': function () {
            alert('Você não tem permissão para acessar o arquivo: "' + file.name + '" ou o arquivo está corrompido. Favor contactar o administrador do sistema.');
        },
        'onUploadSuccess': function (file, data, response) {
            //alert(data);
            if (data == 'true') {
                isOk = true;
                success('true');
            } else {
                success('false');
                isOk = true;
            }
        }
    });

1 个答案:

答案 0 :(得分:0)

你试过看一下this回答吗?

  

试试这个:

     

cscript adsutil.vbs set w3svc/1/uploadreadaheadsize 204800

     

看来,当使用第三方上传控件时,我假设   你是,IIS有一个问题将数据传递给ISAPI扩展。   上面的命令将UploadReadAheadSize设置为204800KB。您   可能需要调整设置参数以匹配您所在的Web ID。   希望您可以访问服务器。

     

了解更多相关信息   here