1

I have used html5 file system for createing a file on local disk. It's working fine on computer (desk or laptop), file is been created, data stored and also retrived from the the file. But When runing on mobile device (android) it not working as aspected. If any body have idea whats going wrong on device, plz share. I have read about HTML5 from this link.

I tried for log details, i found this: Resource interpreted as Image but transferred with MIME type text/html: "http://10.4.71.200/stage/not_found.html".

Community
  • 1
  • 1
PJ1405
  • 545
  • 1
  • 3
  • 18

1 Answers1

1

That may be because HTML5 FileSystem API only works on Chrome 40+ on Android

http://caniuse.com/#search=FileSystem

Edit: You may have noticed the Heads up! notice at the beginning of the post you read

Gorcyn
  • 2,807
  • 1
  • 20
  • 22
  • But i have used it with firefox and its working smoothly. And i am using android chrome v40.0.2214, so it should work with it. – PJ1405 Feb 09 '15 at 11:00
  • hm... Some code or log would help (me or other people) to help you – Gorcyn Feb 09 '15 at 11:05
  • I have added the log error, plz check wheather it's useful. – PJ1405 Feb 09 '15 at 11:41
  • Looks like an image URI in a CSS file problem to me. Check out these similar questions http://stackoverflow.com/questions/8057030/resource-interpreted-as-image-but-transferred-with-mime-type-text-html-magento , http://stackoverflow.com/questions/25724409/resource-interpreted-as-image-but-transferred-with-mime-type-text-html-error – Gorcyn Feb 09 '15 at 14:45