Multipart not working with Mac osX Maverick

Amazon S3 upload add-on.
Post Reply
t.montour
Posts: 7
Joined: Fri Apr 25, 2014 9:34 pm

Multipart not working with Mac osX Maverick

Post 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

User avatar
support
Posts: 1503
Joined: Sun Jan 27, 2008 6:19 pm

Re: Multipart not working with Mac osX Maverick

Post 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.

t.montour
Posts: 7
Joined: Fri Apr 25, 2014 9:34 pm

Re: Multipart not working with Mac osX Maverick

Post by t.montour »

Fixed thanks for your help on this one

User avatar
support
Posts: 1503
Joined: Sun Jan 27, 2008 6:19 pm

Re: Multipart not working with Mac osX Maverick

Post by support »

Great

Post Reply