开发者

windows server 2008 issue

i have a website in windows server 2008. I'm using aspupload component. the upload works when the file size is small but fails when the size is hu开发者_Go百科ge.

Is there some settings in iis 7 that limits the upload size?

-Vivek


Thanks for all your replies. I got this issue fixed.

I went to C:\Windows\System32\inetsrv\config\applicationhost.config

and added the following line under my website

  <security>
     <requestFiltering>
        <requestLimits maxAllowedContentLength="1000000000"/>  
     </requestFiltering>
  </security>

thanks again

-Vivek


A quick google search for your component brings us to this page:

http://www.aspupload.com/

Which lists the following limitation:

files up to 2 GB can be uploaded

When I see a 2GB number like that, I'm inclined to think the limiting factor is a signed integer somewhere in their code. Replacing that integer(s) with a Long would greatly increase the supported file size, if you have the ability to change that code.


AspMaxRequestEntityAllowed in metabase.xml for IIS needs to be changed.

This link should help.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜