IIS 7 httpruntime maxRequestLength limit of 2097151

后端 未结 2 722
眼角桃花
眼角桃花 2021-01-02 05:54

I am attempting to upload files to my Sharepoint 2010 server running on IIS 7 via the sharepoint client object model. The issue I have found is the file size limit is very w

相关标签:
2条回答
  • 2021-01-02 06:04

    I have the same problem, but I found that you have to put

    <system.webServer>
      <security>
        <requestFiltering>
          <requestLimits maxAllowedContentLength="2147483648" />
        </requestFiltering>
      </security>
    </system.webServer>
    

    too here for some IIS up http://ajaxuploader.com/large-file-upload-iis-asp-net.htm

    0 讨论(0)
  • 2021-01-02 06:15

    The maxRequestLength is measured in kilobytes, so you already set it to be 2GB (2097151 / 1024 / 1024 = 2).

    0 讨论(0)
提交回复
热议问题