Questions tagged [application-cache]

The Application Cache (or AppCache), part of HTML5, allows a developer to specify which files the web 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.

Application Cache is an obsolete part of HTML5:

Do not use it in old or new projects. Pages or Web apps using it may break at any time. It's in the process of being removed from the Web platform. Use Service Workers instead.

References

207 questions
0
votes
1 answer

Cache manifest are not loaded

I want to use html5 manifest file. To cache the mose important things of the website. I have make a manifest file and cache the most important things. I cache the important images that are used in all the pages. And i cached the css file. But this…
Mike Vierwind
  • 1,482
  • 4
  • 23
  • 44
0
votes
0 answers

Show progress percentage of cache.add() in Service Worker

In AngularJS 1.5, I replaced ServiceWorker instead of ApplicationCache(because of deprecation) In ApplicationCache version, there was a dialog box showing progress applicationCache.addEventListener('progress', function (e) { ... } I would like…
0
votes
1 answer

When I switched my web application from App Cache to Service Workers some browsers require clear cache

I had App Cache working correctly for offline capability for our web app but I was tasked with switching to service workers because several major browsers have threatened that app cache support may be dropped at any time. I was able to get service…
James Sumner
  • 138
  • 3
  • 15
0
votes
0 answers

PWA Update application cache from client

UPDATE - Not sure how to update this to say pate's comment made me realise what I was doing wrong? Either way this is resolved for me now thanks I return JSON from the server that contains a list of objects, each representing a digital post it note…
Simon
  • 1,613
  • 1
  • 12
  • 27
0
votes
1 answer

How does the browser work with service workers and application caching together?

At the moment, you'll need to use service workers and offline application caching to make sure every browser works with your offline website, as some browsers do not support service workers as of yet. (Edge and Safari). My question is how do the…
0
votes
2 answers

How do i tell the browser to use cache manifest if the browser doesn't support service workers?

How do i tell the browser to use cache manifest if the browser doesn't support service workers? I have an Angular 4 app that needs to run offline. Service workers do the job brilliantly but it isn't supported by Safari which is a required browser…
0
votes
1 answer

Making react-router's browserHistory work with Appcache without storing every path separately

TL;DR: What I'm trying to figure out is how to configure my AppCache manifest so that only stores the root URL, plus any explicitly mentioned static files, and uses said root website as a fallback for any other URL, so that I can make it work with…
0
votes
1 answer

HTTP Strict Transport Security and HTML5 Application Cache

We're using the HTML5 Application Cache feature: ... When returning users navigate to this application they will already have all static files cached and the application is therefore loaded without network…
Mårten Wikström
  • 11,074
  • 5
  • 47
  • 87
0
votes
1 answer

PyQt - QWebView Enables Application Cache?

I wonder how to enable application cache in a Qt program written in python?
ch271828n
  • 15,854
  • 5
  • 53
  • 88
0
votes
1 answer

HTML5 web app not caching when added to home screen on iOS

I have web application ASP/MVC which uses application cache and it has to work as standalone application when added to home screen. It works fine, but on iOS10 it doesn't cache and doesn't work on offline mode. I don't have exact steps but it seems…
Tatyana
  • 231
  • 1
  • 5
  • 15
0
votes
2 answers

How can I share application cache between two ASP.NET applications

Here's the deal, I have one website over at utopiapimp.com. The website is used for a popular web based game. Some company internets don't allow the website to be accessed so I opened up another domain at utopiashrimp.com. Same website but a…
SpoiledTechie.com
  • 10,515
  • 23
  • 77
  • 100
0
votes
1 answer

ASP.NET DataView - problem with RowFilter and application cache

Good afternoon ladies and gents -- I've been tasked with finding and fixing a bug in an unfamiliar legacy application that had some recent changes made to it, but I don't have an easy way (that I know of) to test my theory. I'm hoping your…
Cᴏʀʏ
  • 105,112
  • 20
  • 162
  • 194
0
votes
1 answer

Why is my ApplicationCache passing back a reference instead of a value?

This is an odd thing I've just run into. I have a web application with a small DataTable stored in the ApplicationCache to reduce the amount of queries to a separate since the data is a lookup table that doesn't change often. I access this DataTable…
Dillie-O
  • 29,277
  • 14
  • 101
  • 140
0
votes
3 answers

ASP MVC offline page with app cache api HTML5

I am trying to redirect the user to a offline page when he is disconnected but i have a problem. I noticed that the manifest file is never loaded by the browser this is my manifest attribute
ragnar
  • 150
  • 1
  • 6
0
votes
1 answer

HTML5 Application cache doesn't work with Firefox

The below combination works fine on IE, Chrome and Opera but fails on Firefox. Firfox just ignores manifest file. entry.html

Application Cache Example