Questions tagged [cache-manifest]

The cache manifest is a part of the deprecated HTML5 application cache (AppCache) feature, which is intended to provide users with the ability to access a web application even without a network connection.

Web applications consists of a list of web addresses. These can be HTML, CSS, JavaScript, images or any other source that is required for a web application to be rendered. These addresses or URLs can be copied onto a manifest file, which can be updated regularly by the author of the web application, indicating any new web addresses that are added or deleted. When connecting to a network for the first time a web browser will read the HTML5 manifest file, download the resources given and store them locally. Then, in the absence of a network connection, the web browser will shift to the local copies instead and render the web application offline.

(Source: wikipedia.org/Cache_manifest_in_HTML5)

262 questions
28
votes
4 answers

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 tag, browsers that already have a cached version will continue…
Trott
  • 66,479
  • 23
  • 173
  • 212
23
votes
3 answers

My HTML5 Application Cache Manifest is caching everything

UPDATE: ** I posted this question when this feature was really new, I realize now that this feature should not be used this way unless it is used via JavaScript. but seems like this hack is a great solution for most beginners who make the same…
Neo
  • 11,078
  • 2
  • 68
  • 79
20
votes
2 answers

Manifest fetch failed (9)

I've been working with Appcache for quite some time, but I recently took a couple of weeks to develop a different project. When I returned to my offline project, I started getting this error every time I try to download the contents of my…
17
votes
3 answers

File uploads in HTML5 offline applications

I am working on a Web based application which will potentially be used in environments with unstable Internet connection. I am implementing it as an HTML5 offline application that will utilize HTML5 local storage (actually jQuery plug-in jStorage).…
Insider Pro
  • 748
  • 7
  • 17
16
votes
1 answer

Cache Manifest: What is the prefer-online setting?

I've been looking for a way to cache pages for use only when the user is offline, otherwise download the pages normally. However, once a cache manifest is detected, the browser will only load from those cached pages. My search landed me on…
Ryan
  • 1,387
  • 14
  • 23
15
votes
2 answers

HTML5 Local Storage VS App Cache Offline Website Browsing

After going through multiple articles, I am still not clear on the difference between Local Storage and App Cache Manifest. Also referred: Is AppCache = Application Cache = Web Storage's LocalStorage? (SO 10986026), Application Cache is a Douchebag…
cosmoloc
  • 2,884
  • 5
  • 29
  • 48
14
votes
1 answer

HTML5 Offline Manifest Stop Caching Page It Is Declared On

I've been playing around with the cache manifest file and trying to get it to stop caching the page that it's declared on. From HTML5 Rocks any page the user navigates to that include a manifest will be implicitly added to the application…
Greg
  • 31,180
  • 18
  • 65
  • 85
12
votes
3 answers

Can Android cache HTML5 video with cache manifest offline?

I have example which is cached fine on chrome and displays video while offline. When i try this example with android 3.2 and 4.x tablet, video will play only online, but not offline - although other elements like HTML file and background are present…
alarmatwork
  • 121
  • 1
  • 4
12
votes
1 answer

Disable Application Cache in Chrome and Safari

I’m using the AppCache in order to enable offline access for a web app. The issue is that for development every time I make a change to my JavaScript I also need to make a change to the manifest (in order to trigger a re-download of the cached…
Jack
  • 10,943
  • 13
  • 50
  • 65
11
votes
2 answers

generate an app.cache with Jekyll

We have a site that builds locally with Jekyll and Jekyll-Assets (which uses sprockets). We'd like to be able to generate a cache manifest that has all the files that go into the resultant site. We'd like to generate this as a part of the build…
Ben
  • 12,614
  • 4
  • 37
  • 69
11
votes
2 answers

HTML5 cache manifest: unsuccessful ajax calls getting fallback

I've got an HTML5 application which uses a cache manifest to provide offline functionality. This application makes ajax calls, when online, and some of this calls can obtain a 403 unauthorized in response. Here's the bottom of my cache.manifest…
Jonathan Naguin
  • 14,526
  • 6
  • 46
  • 75
10
votes
3 answers

Reason for Cache Manifest: Application Cache Error event: Resource fetch failed (2)

My manifest file was working fine until this morning and I now keep getting the following error in chrome Version 36.0.1985.143 m Creating Application Cache with manifest https://localhost/static/app/cache.manifest dashboard:1 Application Cache…
Quince
  • 14,790
  • 6
  • 60
  • 69
10
votes
1 answer

Html 5 manifest is not working by iFrame correctly

I've an application which has several C# projects, as following CRM.DomainLogic CRM.Web Warehouse.DomainLogic Warehouse.Web ,... Each web project such as CRM.Web has its own 'html views' and 'js controllers' and there are several other types of…
Yaser Moradi
  • 3,267
  • 3
  • 24
  • 50
9
votes
1 answer

How to use/create a MANIFEST, handle appCache events/errors and the use of swapCache

How do you use and create a MANIFEST file (structure), handle appCache events and errors, and when is swapCache needed?
9
votes
2 answers

HTML5 App Cache: Manifest ist updated but files are taken from appcache one more time

I have a cache manifest with a comment in it # Version 3.2 in order to update all the App I simply change the Version number. It works, but: When I update the manifest, everything is updated correctly (new cache is filled) but the actual files are…
LukeSolar
  • 3,795
  • 4
  • 32
  • 39
1
2 3
17 18