There are 4 places that need to set in order to upload files larger then 30MB to the server. The following steps will increase the maximum file size to 100 MB. Set each line di
1) AttachFiles.js: change max_file_size to ‘100mb’
2) web.config: <httpRuntime maxRequestLength=”102400″ />
3) web.config: <system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength=”102400000″ />
4) Edit the request filtering feature settings and the request limits using IIS manager (as per http://ajaxuploader.com/large-file-upload-iis-asp-net.htm)
0
0