CC-2473: plupload: Cannot upload a 250Mb+ file
- fixed - we now use chuck to uploade files
This commit is contained in:
parent
2bde3298e4
commit
ce0396961d
4 changed files with 41 additions and 3 deletions
|
@ -1,10 +1,11 @@
|
|||
$(document).ready(function() {
|
||||
var uploader;
|
||||
|
||||
$("#plupload_files").pluploadQueue({
|
||||
uploader = $("#plupload_files").pluploadQueue({
|
||||
// General settings
|
||||
runtimes : 'html5,html4',
|
||||
url : '/Plupload/upload/format/json',
|
||||
chunk_size: '5mb',
|
||||
multiple_queues : 'true',
|
||||
filters : [
|
||||
{title: "Audio Files", extensions: "ogg,mp3"}
|
||||
|
@ -24,6 +25,7 @@ $(document).ready(function() {
|
|||
|
||||
$("#plupload_error").find("table").append(row);
|
||||
}
|
||||
$.get('/Plupload/copyfile/format/json/name/'+file.name);
|
||||
});
|
||||
|
||||
var uploadProgress = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue