The deprecated HTML Application Cache (AppCache) feature is intended to allow you to specify files for browsers to cache and make available to users when offline. Service Workers now address all use cases the AppCache feature was intended for.
Questions tagged [html5-appcache]
516 questions
0
votes
2 answers
Can Meteor's Appcache also store database data?
With the latest Meteor version 0.5.9 I've been experimenting with the appcache package, and really like its functionality.
I used meteor create --example leaderboard and then meteor add appcacheto test out the behaviour, and the page even loads when…

Nick
- 11,483
- 8
- 41
- 44
0
votes
1 answer
html5 application cache force update
window.applicationCache has a method named update. I assume this function fetches the manifest.appcache file as specified in the html element, and checks for differences.
This is all well and good, but to my understanding whenever a page is loaded…

Roderick Obrist
- 3,688
- 1
- 16
- 17
0
votes
1 answer
Appcache Manifest not working
I have the following appcache manifest:
CACHE MANIFEST
# Cache Manifest timestamp: 1361723106
CACHE:
offline.html
offline2.html
offline.manifest.php
NETWORK:
*
FALLBACK:
/ offline.html
I am using this on my local installed server.
So when I…

Daniel
- 2,409
- 2
- 26
- 42
0
votes
1 answer
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 and this is what I get in console:
Application…

mattdlockyer
- 6,984
- 4
- 40
- 44
0
votes
1 answer
Reading the URL that triggered a fallback when offline
I have a web app that is running offline on a device with no network connection.
The HTML5 AppCache loads resources and page URLs that are needed, but when the user selects a page that has not been loaded, the fallback page is loaded.
What I need is…

m b
- 168
- 1
- 1
- 7
0
votes
1 answer
Redraw the saved image data to HTML 5 canvas
I am studying HTML5. I want to create / draw some shapes in canvas and save it in MySQL database and restore it in the canvas itself.
I followed this tutorial
And saved the data in database. I got this in my database…

ramesh
- 4,008
- 13
- 72
- 117
0
votes
1 answer
Cache manifest - what happens to a cached page that links to an updated/invalidated manifest?
Imagine this scenario:
/pageone.html and /pagetwo.html both reference /cache.manifest. Neither page are explicitly mentioned in the manifest.
A user visits both /pageone.html and /pagetwo.html while online, so now both pages, and all the files in…

Robin Winslow
- 10,908
- 8
- 62
- 91
0
votes
1 answer
Appcache caches pages that are not included in manifest
I have a codeigniter site and i want to store the following files via appcache: jquery.js, style.css and offline.html (fallback).
So, naturally, manifest file looks like the one below. my manifest file is called, well, manifest.appcache.
CACHE…

Marv Ferrer
- 1
- 1
0
votes
1 answer
HTML5 Application Cache need explanation
Can someone show a complete example of application cache with html, css, js, appcache file including CACHE, NETWORK and FALLBACK section. Also updating the manifest. Where should the coding be…

user1619303
- 41
- 4
0
votes
2 answers
Application cache
I tried to execute the following set of coding which is already in w3schools
index.html has the following codings
…

user1619303
- 41
- 4
0
votes
1 answer
Android 4.0.4 - WebView - Appcache: wildcard does not work in NETWORK section
I want to clarify in manifest that AJAX-calls to web-services only get executed when online. For that I used the NETWORK section of the manifest:
NETWORK:
/WebServices/*
But this causes calls of the error-callback of the JQuery function $.getJSON…

Marvin Emil Brach
- 3,984
- 1
- 32
- 62
0
votes
1 answer
More Odd Firefox Cache Manifest Behavior: Redirect to Outside Domain Results in 404 Failure
I have an HTML5/Javascript (PHP/MySQL on the server) app with a cache manifest and it runs fine on almost all mobile and desktop browsers except for Firefox.
When I remove the cache manifest, it works fine in Firefox. Therefore, it's something odd…

edpeciulis
- 145
- 1
- 3
- 9
0
votes
1 answer
Cache manifest - edited pages not updating
I have a problem with using the appcache.
I have it working, but it is working too well. I am using it on wordpress and the problem is that the browser is serving up the cached pages so when I update/edit a page and view it in the browser it shows…

alimacca
- 33
- 1
- 1
- 7
0
votes
1 answer
Securing HTML5 AppCache and SQLite from deletion
I am developing a web application using HTML5 AppCache manifest for storing all the application artifacts (HTML pages, style sheets, scripts, etc.) and SQLite for storing forms data being submitted by the user.
The concern is that both of these…

Taha
- 1,086
- 1
- 10
- 20
0
votes
1 answer
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:
here is the content of test.manifest file:
CACHE MANIFEST …

user1222589
- 87
- 6