Page 1 of 1

Multipart not working with Mac osX Maverick

Posted: Mon Apr 28, 2014 10:18 pm
by t.montour
I have all the code working for JS3Upload When I try it on pc it seems to work correctly 32mb file split into 7 chunks. when file is finished in my AWS bucket its 32mb

but when I use the same code on the Mac and same file the end result is 1.2 mb which tells me its not re combining the file for some reason.
am I missing a param?

I'm using version 3.2 I believe I just re-downloaded it today to make sure I had the newest version.

Thanks for any help
Troy

Re: Multipart not working with Mac osX Maverick

Posted: Thu May 08, 2014 1:08 pm
by support
Multipart upload with resume support requires HTTP PUT and you've setup JS3Upload for HTTP POST, could you try to replace mode parameter from:
jfileupload.transfer.client.s3.rest.POSTUploadTransfer
by:
jfileupload.transfer.client.s3.rest.PUTUploadTransfer
as you can see under applet_s3_multipart.js sample.

Re: Multipart not working with Mac osX Maverick

Posted: Wed Jun 04, 2014 7:20 pm
by t.montour
Fixed thanks for your help on this one

Re: Multipart not working with Mac osX Maverick

Posted: Sun Aug 24, 2014 12:36 pm
by support
Great