plupload icon indicating copy to clipboard operation
plupload copied to clipboard

plupload uploads only chunks from internet explorer but from chrome and firefox it uploads the file correctly

Open cyberail opened this issue 6 years ago • 0 comments

Hi so the idea is that When I try to upload file from chrome or firefox it works fine and I get complete file in uploads folder. (file size is 133mb and chunk size is set to 1mb) but when I am trying to upload same file from internet explorer I get 133 corrupted file with an extension .part in my uploads folder. ``` runtimes : 'html5,flash,silverlight,html4', browse_button : 'pickfiles', // you can pass in id... url : 'upload.php', send_file_name: false, chunks : true, chunk_size: "1mb", unique_names : true, max_retries: 3, flash_swf_url : '../js/Moxie.swf', silverlight_xap_url : '../js/Moxie.xap', filters : { max_file_size : '10gb', mime_types : "image/*,application/zip,video/mp4" },

cyberail avatar Oct 20 '18 03:10 cyberail