Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kindle Fire and File Uploads

I've tried everything I can think of to get the Kindle Fire Browser to accept uploads, no dice. The file picker shows up, but the upload errors. Every once in a blue moon it works, and I can't figure out why. I've tried both HTML5 and normal FORM POST uploads.

Anybody have ideas, or better luck?

Also, the file selector pretends to be HTML5, but then returns 0 for the file size, screwing up any file size display.

Test case: http://jsfiddle.net/dbaxD/1/

like image 805
Chris Hynes Avatar asked Nov 16 '11 22:11

Chris Hynes


1 Answers

As long as Jquery Mobile Works Fine With Kindle fire Browser

Check uploadify plugin which can work on Jquery Mobile

http://www.uploadify.com/

Also Check this Tips and Tutorial

EDIT Checkout this

http://jquerymobile.com/demos/1.0a3/#docs/forms/index.html

And make sure

$.mobile.ajaxFormsEnabled = false;

And form attribute

<form id="form" action="/mobile/upload" method="post" enctype="multipart/form-data" data-ajax="false">
like image 171
Synxmax Avatar answered Nov 19 '22 23:11

Synxmax