-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
problems with files larger than 4 GB #1694
Comments
The issue of uploading files larger than 4 GB is independent of the file upload plugin and due to browser restrictions: Firefox has a current limit of 2^32 bytes for file uploads: Google Chrome reports the correct Content-Length, but continues to send 0's if a Content-Length of more than 2^32 bytes has been exceeded: A similar restriction might apply to other browsers, like Opera. I've updated the FAQ accordingly: |
If using "Chunked uploads" (Blob API) will that remove this limitation? |
Probably yes, though I didn't test it yet. |
When I try uploading a 4Gb file with name myfile.zip, the jQueryUpload create an infinite loop. It create myfile.zip, myfile(1).zip, myfile(2).zip, .....Is there a bug? |
It is probably related to the 4GB limitation current browsers have. |
I am having the same issue of the infinite loop even on a small file of size 17Mb. The progress bar hits the end then it goes back to almost 65% and continue. On the server side i see the files: |
I got narrowed down to the chunked method. I am not sure what's going on but for some reason using chunked method causes data.loaded to return NaN at some point. That doesn't happen if the file was an image though. Any suggestions? |
@khaled450, please post your issue to the support forums, as it is not directly related to the browser limitation of 4GB file uploads, nor an isolated problem in the file upload library itself. |
This problem occurs in the browsers Opera, Firefox.
When you select the file of more than 4 GB, the opera its size is always 4.29 GB size in Firefox is displayed correctly. In the opera file upload does not start, the page just refreshes. In Firefox starts uploading, but the progress is not the correct data displays and some time upload is interrupted with an error. In the browser chrome, no problems, everything works perfectly.
I use the following browser versions:
Opera 12.02
Firefox 15.0.1
Chrome 18.0.1025.1634
Plugin version:
jQuery File Upload Plugin 5.16.2
jQuery File Upload User Interface Plugin 6.9.4
jQuery File Upload File Processing Plugin 1.0
The text was updated successfully, but these errors were encountered: