0
votes
0answers
7 views

offline cache manifest but get “err_internet_disconnected”

I've set up a Cache Manifest for my app. I try running it in Chrome for Android in airplane mode, but I get a generic Chrome error "err_internet_disconnected." Shouldn't the cache manifest kick at ...
0
votes
0answers
65 views

Dojo Xhr: Result Content is Not Appearing until there is a mouse click anywhere on page

i'm building an offline application with Dojo 1.7, using Dojo RDD, generating forms dynamically and storing them in cache. now every time when i fetch something through ajax i have to remove dojo ...
0
votes
0answers
65 views

Appcache for blogs/dynamic content

I'm in the process of optimizing our mobile site and i'd like to allow our users to view content offline. HTML5 Appcache seems like the best option for this but all use cases that i've seen show ...
1
vote
5answers
658 views

How to store 40.000 images using HTML5 or Phonegap?

I have searched a long time for a way to store a large number of images in HTML5, or access them stored locally and display them. The application is a product ordering and catalog, like an e-commerce ...
0
votes
1answer
79 views

HTML5 offline appcache custom fonts not loading or displaying properly when server is down

These fonts load perfectly fine when the server is running OR when the client is offline. But as soon as I shut down my server (let's assume it can't be contacted because it's down) the fonts break ...
0
votes
0answers
132 views

HTML5 App Cache don't work in Opera Mobile 12.1.4 and Android 2.2 browser

I have made an HTML5 App Cache for an mobile chat application, it is working perfect in Desktop browsers, but not working in Android 2.2 default browser and last version of Opera Mobile. What I am ...
2
votes
1answer
268 views

HTML5 Offline limitation of image sizes storage

I'm currently developing an application in HTML5 with the objective of providing users offline access the information. For this, use the technologies manifest appcache (files) and localStorage (data), ...
1
vote
0answers
258 views

HTML5 / JQuery Mobile App - AppCache/Undesired caching

I've developed a JQuery Mobile app. I am using appcache to load nothing but the main page, images, and my JQM includes. I have * in the NETWORK section of my appcache file. It has been working ...
1
vote
0answers
379 views

Viewing PDF in Android / Chrome

I have a website caching pdfs offline with a .manifest-file. On the desktop version of Chrome the PDF can be viewed offline inside Chrome. But on the Android Chrome nothing happens when I'm trying to ...
2
votes
0answers
681 views

Firefox does not load page from offline cache manifest, but works fine on Chrome (+ cache manifest troubleshooting tips)

This is basically identical to this SO questions which has not been answered: Offline Web App not caching on Firefox but ok on Chrome I'm experiencing the same problem and I'll provide a bit more ...
1
vote
1answer
570 views

HTML5 offline appcache: Force refresh of all content?

My small HTML5 app needs to be re-deployed on a server. I understood I only had to touch the .appcache file to have every browser update to the last version of the files upon next visit. The manifest ...
2
votes
1answer
130 views

HTML5: Javascript to force offline cache rebuild?

Following html5rocks' tutorial, I hoped that window.applicationCache.update() would help to force re-building the offline cache. ...
0
votes
1answer
92 views

HTML5 AppCache - Request more space in Firefox

Is it possible to ask a Firefox (version 15) user for more space (> 5MB) for the AppCache? We're planning to develop a WebApp for a customer with users who are only using Firefox 15 (or IE8) and the ...
2
votes
0answers
329 views

HTML5 Offline iPad App with Caching videos, PDF, Doc and PPT files

Currently I am trying to build a web app for iPad which needs to be used in places with no internet connectivity. The app is includes some video files, PDF, Doc and PPT files so the total application ...
2
votes
1answer
380 views

Application Cache manifest file errors with Windows/NTLM authentication

How are browsers implementing requests for Application Cache manifest files and is it different from how other files are requested? I ask because I'm seeing behavior I wouldn't expect when using ...
0
votes
2answers
339 views

How can I use HTML5's application cache (appcache) to cache dynamic pages?

I have dynamic pages that I would like to make available offline. I'd like to use HTML5's application cache to do this. The problem is that I don't know all of the resources (JavaScript and CSS) for ...
0
votes
2answers
171 views

HTML5 appcache for media only

I want to cache javascript libraries and other static assets - but no HTML whatsoever. I was under the impression CACHE MANIFEST somefiles.js somemorefiles.js NETWORK: * Would do the job. It ...
1
vote
0answers
671 views

IOS5 AppCache not working

My site switchitoff.net has been happily using an appcache for a while now. It works perfectly on all browsers that support appcache, including Chrome, Firefox, Safari and Mobile Safari... except ...
3
votes
1answer
655 views

Omit current page from HTML5 offline appcache but use cached resources

For performance purposes, I want to have some of my web pages use resources that have been cached for offline use (images, CSS, etc.) but to not have the page itself cached as the content will be ...
7
votes
2answers
2k views

Removing HTML5 Offline AppCache

I have an HTML document with an associated appcache manifest. But now I want to get rid of offline application caching for a while. If I remove mention of the manifest from the <html> tag, ...