In my Rails application I am able to upload only up to 1.5GB when using Internet Explorer, but when I use Chrome开发者_开发百科 I am able to upload 10GB without a problem. Why is this? I am running Mongrel as my web server.
Try to look at the http-header:
Content-Length: -1618952669
The value should be the file-size in byte (never a negative-value).
Regarding this Web-Page http://www.motobit.com/help/scptutl/pa98.htm There is a limit within the browser ~2.0GB. Files larger than this may produce an integer-overflow.
I know it is an old thread, but just to help others looking for info about IE upload limits
- Version Upload Download
- IE7 2gb 4gb
- IE8 2gb 17,592GB
- IE9, 10 4gb 17,592GB
http://blogs.msdn.com/b/ieinternals/archive/2011/03/10/wininet-internet-explorer-file-download-and-upload-maximum-size-limits.aspx
精彩评论