The Application Cache (or AppCache) allows a developer to specify which files the browser should cache and make available to offline users. Your app will load and work correctly, even if the user presses the refresh button while they're offline.

learn more… | top users | synonyms

0
votes
0answers
12 views

Application Cache Error event: Manifest fetch failed (404)

I have already one site, for that I have created one mobile site using jquery mobile with application cache features. (Both have same urls) Using apache2 userAgent settings I redirected to mobile ...
-2
votes
0answers
19 views

how to programatically clear application cache in Html 5? [closed]

I am quite new to application cache and want's to know that is there a way to programmatically clear application cache. I can't empty the manifest as i'm not online.
-4
votes
0answers
31 views

Clearing application cache programmatically

Is there a way to programmatically clear the HTML5 application cache?
0
votes
0answers
17 views

Can I use HTML5 Application-Cache with Not Modified(304)?

I want to serve jQuery-Mobile files from application-cache and my javascript files from server(response 200 or 304) But when I set Manifest file like CACHE: ------jQuery----- NETWORK: # FALLBACK: ...
0
votes
0answers
32 views

SignalR breaks application cache for mobile web app that needs offline usage

As soon as I add the SignalR JavaScript lib on a manifest, offline usage becomes impossible on several mobile and pc browsers because application-cache updates fail (silently on mobile browsers ...
0
votes
1answer
62 views

Application Cache for Dynamic Sites

I am making a php mysql web app, my idea is to install in the customer home a web server so they can connect with whatever device they want, probably most of the time they will be using an ipad to ...
0
votes
1answer
44 views

Adding a NETWORK section to HTML5 manifest file and accessing iPhone web-app in airplane mode

The facts I'm building an HTML 5 responsive website with an offline mode. To do that, I'm using a manifest file with a FALLBACK section and the browser's localStorage to store the pages that the ...
0
votes
0answers
46 views

Application Cache not working in Windows Phone / Phonegap 2.7.0

I am trying to cache html pages via the cache manifest file. I have tried the working of the offline working of these pages in chrome. However in windows phone 7, the pages are not loading. Please ...
1
vote
0answers
25 views

Explicit versus master entries

I am currently building a simple framework allowing developers to create application cache dynamically, modullary and simply and reduce the mistyped resources. One thing I am now dealing with is what ...
0
votes
1answer
19 views

HTML Application Cache expiry

I've been asked to build offline access to some content that I've been working on, & was just wondering... Does the cache expire at all, & if so, is it after a certain duration, or dependant ...
0
votes
1answer
166 views

The PhoneGap app in Android didn't use the HTML5 Application Cache

The PhoneGap application in Android didn't use the cached file. But the HTML5 Application Cache is enabled and trigger event correctly. I had a website use HTML5 Application Cache: index file: ...
0
votes
0answers
46 views

Loading application cached items from another domain

Is it possible to load resources from the application cache from another domain? For example, if I cached http://example.com/style.css, will it still load the local (cached) version when I put ...
0
votes
0answers
58 views

Can I store application cache of HTML5 when packaging my hybrid app?

I am developing an hybrid app. It will bring contents from my server, and I will use application cache for performance and traffic cost issues. Even though I use application cache, the users would ...
2
votes
1answer
107 views

AppCache excruciatingly slow on iOS

I am developing a web-app utilizing Application Cache, and everything is working great on desktop browsers and on Android (even very old & slow android handsets). However downloading the appcache ...
0
votes
0answers
21 views

How to inspect the HTML 5 application cache on iOS

Is there a way to inspect the HTML 5 application cache of an website which is linked on the homescreen by an icon?
2
votes
2answers
201 views

Ttitanium webview and HTML5 application cache

I am using Titanium to create a application for Android. The app uses webview to load external HTML5 webpages. The webpage uses a manifest to cache the page and some assets. This works fine on desktop ...
0
votes
1answer
98 views

Why is localStorage not used to store static resources?

This is question logically follows this question: Is HTML5 application caching relevant or a failed technology? It is obvious that popular sites are not using HTML 5 application caching to save ...
0
votes
0answers
25 views

application cache is being deleted when IIS is stopped

I have an applicationcache working fine for my offline application. Once I turn off IIS web server the application cache is getting cleared from the web browser (I am using Chrome). The event I get ...
0
votes
1answer
184 views

Firefox/IE10 - HTML5 Application Cache and Cookies

I have a problem with HTML5 appCache on Firefox and IE10. I have build a minimal test case available on: https://docs.google.com/file/d/0B7CVmRJOMgTNZUxkLWRDNmhtVU0/edit?usp=sharing Accessing the ...
0
votes
0answers
39 views

Firefox allow application-cached page to be accessed once only

As suggessted by the title, I recently found this weird behavior of application cache in Firefox 18. There is a servlet in the application cache. Because the servlet declares itself as an download ...
3
votes
1answer
260 views

Is ApplicationCache for FF/IE 10 fully implemented (or implemented correctly)?

Issue: Unable to get Fallback resources to get served from applicationCache (Offline cache) when the browser is set to “Work Offline”. Environment details: Windows 7 64-bit SP 1 IE 10 ver. ...
1
vote
0answers
91 views

HTML5 Application Cache Error Event Detail

I have an HTML5 offline app and on occasion users have cache errors which I handle with the event listener and display a generic error message. In order to help debug these I'd like to also display ...
2
votes
2answers
120 views

Is there a way to query the HTML5 application cache?

Is there a way to query the contents of the HTML5 application cache? I'm writing an iOS application that uses a lot of cached web content. Before loading a given page when the app is offline, I'd ...
0
votes
0answers
99 views

HTML offline application in Android UIWebView not working

I have a web app that uses applicationCache. This work ok in chrome on desktop and in android browser on android, but in android UIWebView (ie Cordova/PhoneGap) it does not work, the application ...
0
votes
1answer
35 views

Is there a way to edit cache manifest from client side

It was stated in http://www.html5rocks.com/en/tutorials/appcache/beginner/ that to attempt to update cache requires the manifest file to have changed. Which means the guy on the server side have to ...
0
votes
0answers
30 views

applicationCache event not raised

In Chrome, catching the applicationCache event works (see below) but not in FireFox 17 (even though I see from the info that after allowing the appCache to fill, there is 1.7MB in it). So it is ...
0
votes
1answer
77 views

How to cache pictures in html5 AppCache

I'm building a photography site, which ideally should work offline. Caching the css/js files required is pretty straightforward. The issue is, what to do with the actual photographs. I'm currently ...
0
votes
1answer
86 views

Can I use protocol-agnostic URLs in my HTML5 Application Cache Manifest?

We have a number of websites which use the same codebase to run different sites depending on the domain name used, and we're looking to use the HTML5 Application Cache to improve the performance of ...
0
votes
1answer
130 views

Wordpress <html>-Tag hook/filter?

Im writing a application cache plugin for Wordpress. I was wondering how i can modify the <\html> tag in the current theme from my plugin to: <\html ...
1
vote
1answer
256 views

Application Cache works in Tomcat 6.0 but not in weblogic 10.3

I'm working with application cache and I'm facing the below issue: In Tomcat Server: When the server is online and if the page is accessed for the first time, the files specified in the manifest ...
0
votes
1answer
128 views

Check if offline application cache disabled by browser

So I've got an application that stores offline data using an ApplicationCache. Long story short, it's silently dying for users who don't have offline data enabled, most commonly because they've got ...
1
vote
1answer
196 views

ApplicationCache and error when offline

I have an HTML5 offline application that works rather well, the cache validates, and it works in general, until I actually force the device (or computer) offline. I have a handler attached to ...
0
votes
1answer
138 views

HTML5 application cache - cached files do not update, even when manifest is updated

I have a versioned cache manifest: #version = e5b4271 Every time this version changes, my webapp loads the new manifest, but it never loads update files from the server. Even when I clear the ...
1
vote
1answer
128 views

html5 application cache joomla website

we build multiple websites for our clients based on a Joomla installation we have customised. We have to support back to ie7 but I would like to start making these websites available offline. Do ...
0
votes
0answers
114 views

Application Cache just working on Chrome and Opera, not on Firefox and Safari

I read almost all threads about problems with the application cache, but non is solving my problem. I have <html manifest="offline.appcache"> in my index.html, my manifest looks like this: ...
0
votes
3answers
1k views

Application cache in HTML5 doesn't work in Android PhoneGap application

I'm trying to use application cache in HTML5 for Android PhoneGap Application, but this doesn't work, it doesn't feel with ApplicationCahce Events. function logEvent(event) { ...
2
votes
0answers
746 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 ...
0
votes
1answer
42 views

ApplicationCache won't cache anything

I'm trying to make a web-app viewable when offline. My index.html references the manifest like so: <!DOCTYPE html manifest="manifest.appcache"> The MIME type is correct: my .htaccess has ...
0
votes
1answer
150 views

Why is my cache manifest still not working?

I watch in chorme's console,there is nothing output,and no application cache why is this happen?thanks and here is my html: <html manifest="http://www.test.com/test.manifest"> here ...
1
vote
0answers
71 views

How do I set an HTML5 offline fallback for my homepage when it's just `/`?

As a modern database-driven website, our homepage is simply / instead of /index.html. But when I try to set up an offline fallback for just our homepage, it (as the spec intended) sets the fallback ...
0
votes
0answers
21 views

application cache intermittent

I have an aviation webapp that needs to work reliably offline. It works fine most of the time. However, IOS devices (AFAIK) the button graphics will occaisionally not show up. I verfied the manifest ...
1
vote
1answer
262 views

HTML5 AppCache with dynamic pages

I have a php file called pages.php that returns a page specified by a query parameter. The user selects a number from a dropdown and then an ajax request is sent to pages.php with that number like: ...
3
votes
0answers
556 views

Are W3C Widgets dead? [closed]

Someone recently directed me to the W3C spec on widgets: http://www.w3.org/TR/widgets/ Developers can make web apps work offline via a browser's application cache. I had asked how users were ...
7
votes
2answers
235 views

HTML5 Cache manifest weird bug with more content

I'm slowly but surely going completely crazy with the HTML5 web storage and application cache. Here is my example: http://daviddarx.com/stuffs/work/custom/54/ The cache manifest is valid and tested ...
1
vote
1answer
150 views

HTML5 App Cache fails with Firefox 11 - works with Chromium

I have successfully tested HTML5 Application Cache under Chromium. For instance: CACHE MANIFEST http://localhost/pycoh-mnt/materialRequisition/create The above URL renders an HTML5 file. When I ...
0
votes
1answer
223 views

Purge and update html5 application cache through javascript

I arrive to this problem quite a lot of times, where some of the users have a corrupt application cache (HTML 5). I do update the manifest file every time there is a new release still some times ...
0
votes
1answer
515 views

AppCache on Android Devices

I have this weird problem in trying out an appCache website on android phones. I've tested it in a Froyo 2.2 Android device. I'm testing the capability of AppCache on Android phones using this ...
0
votes
1answer
113 views

Is there any way to defer HTML5 manifest checking?

Given that there is a way to invoke an update directly using window.applicationCache.update(), is there any way to omit the update that is performed automatically by the browser when the page is ...
0
votes
1answer
292 views

AppCache all images in a folder

I have a web client that gets its data (including images) from a web service. I'm already able to cache the web client so the user can use it even if he/she is offline. However I'm not able to cache ...
0
votes
1answer
301 views

AppCache: Resources won't reload

When I update my manifest, and load the page, then I checked on Developer tools the scripts that I've changed. It's not there. I always need to clear my browser cache in order for it to be loaded. ...

1 2 3