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
5
votes
1 answer
How to build an offline web app using Flask?
I'm prototyping an idea for a website that will use the HTML5 offline application cache for certain purposes. The website will be built with Python and Flask and that's where my main problem comes from: I'm working with those two for the first time,…

Rafael Alencar
- 250
- 3
- 7
5
votes
2 answers
Appcache on Android Webview not downloading sources
I know my web app's appcache works nicely because I've tried it on Chrome, even on Chrome for Android it works, but it doesn't when loading it in my Android app from a webview. I have the following settings:
myWebView = (WebView)…

Alberto Elias
- 891
- 2
- 8
- 17
5
votes
1 answer
Did Apple remove HTML5 cache offline viewing from iOS devices?
I made an HTML5 "webapp" for my company back in April, and at that point, I was able to place is on the homescreen of iPhones and iPads, and save it as a bookmark for offline viewing (Android and BB as well, but those are not presenting…

SnowboardBruin
- 3,645
- 8
- 36
- 59
4
votes
1 answer
application cache & 404/500 pages
I have a manifest that looks somethin like this:
CACHE MANIFEST
# e4a75fb378cb627a0d51a80c1cc5684c2d918d93e267f5854a511aa3c8db5b1a
/a/application.js
/a/application.css
NETWORK:
*
FALLBACK:
/ /offline/redirect
The issue is that my /404.html and…

jsharpe
- 2,546
- 3
- 26
- 42
4
votes
1 answer
IOS Web App Video Caching Playback Issue (mp4)
Hello, I'm running the most recent version of iOS (5.0.1) on an iPad2 and cannot get the caching of .mp4 videos to work properly.
I've added the necessary listeners to listen for applicationCache events and then write to the console when those…

Nick Shelton
- 41
- 4
4
votes
1 answer
Application Cache Error: Invalid or missing manifest origin trial token
I have a web app that has been running without issue for the last three years. It was contructed with the ExtJS framework. All of the sudden, none of my customers could reach the site. Upon investigation I am getting this error on the console and…

Elcid_91
- 1,571
- 4
- 24
- 50
4
votes
1 answer
HTML Living Standard just removed application cache related code/documentation. Does this mean it got deprecated completely?
Title says most of it. Until today it was possible to see application cache related documentation in https://html.spec.whatwg.org/#applicationcache
Now, the page doesn't show anything related to application cache. Does this mean it got completely…

Kemal Tezer Dilsiz
- 3,739
- 5
- 24
- 43
4
votes
1 answer
If (Internet == unavailable) in HTML5 app manifest offiline app
I want to put condition for login page that if an internet connection is available, then check the server database, otherwise check the localstorage.
I have tried to check this via an AJAX call, but when the page is loaded from the appcache, it…

Bharat
- 93
- 11
4
votes
0 answers
What is CHROMIUM-INTERCEPT in appcache manifest?
Take a look at this Application Cache Manifest file generated by Google Drive:
CACHE MANIFEST
# 0 145
# 0
CACHE:
# 41576c4d6173fb52cebef31e00ecd0b9386d2dd4
/static/doclist/client/js/3137775926-frame_bin.js
#…

bren
- 4,176
- 3
- 28
- 43
4
votes
1 answer
Image resizing issue when keyboard open in android mobile
Thanks for reading, i am new in cordova developing, i am use framework7 to develop hybrid app using cordova.
I am putting background on login form, but in mobile when open keyboard for writing then background image is resized.
I want fix position…

Hardik Godhani
- 461
- 3
- 16
4
votes
1 answer
Use CEF offline without appcache
I'm investigating using CEF in a new desktop application in which I want to render the UI with HTML5/js. However, I don't want the model to be a typical web application that's just rendered in an embedded browser (i.e. fetching resources from a…

jtheis
- 916
- 3
- 12
- 28
4
votes
2 answers
HTML5 Load page from offline cache only when not online
I am attempting to make a webpage available offline.
I have added to my page.
I have created cache.manifest with the following content:
CACHE…

Wesley Smith
- 19,401
- 22
- 85
- 133
4
votes
0 answers
Express.js + HTML5 appcache not working in Firefox
I want to use HTML5 app cache in my MEAN app but I can't make it work in Firefox 36. It works in Chromium as expected. This is my file structure:
client
app.js
manifest.appcache
views/
index.html
…

Peter Parker
- 93
- 8
4
votes
6 answers
Application Cache Error event: Manifest fetch failed (4)
I am trying to implement AppCache in my application. I have added the corresponding MIME type in IIS. Please see my below html tag
My manifest looks like:
CACHE MANIFEST
Content/img/logo-header.png…

Sriks
- 1,669
- 6
- 26
- 40
4
votes
1 answer
Html5 cache not updating when manifest is changed
I have an application in which I have used app cache. When I change the manifest file and call appcache.update() and call appcache.swap() the new cache is not loaded and previous stuff keeps showing unless i delete the old cache manually and refresh…

Syed Wajahat Ali
- 541
- 1
- 7
- 25