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
Multipart not working with Mac osX MaverickRe: Multipart not working with Mac osX MaverickMultipart 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 MaverickFixed thanks for your help on this one
|