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
0
votes
1 answer

web.config file in Cache Manifest not working

I am using HTML5 cache manifest to build to be able to load some dynamic ASP.NET pages (text and images) from database even without internet connection. All working fine when I list my connectionString as a string in the code behind (c#) but when I…
JeanPaul Galea
  • 113
  • 3
  • 11
0
votes
1 answer

Cannot add items programatically to HTML5 cache-manifest

I am using HTML5 cache manifest to build to be able to load some ASP.NET pages (text and images) even without internet connection. I have data stored on a database and would like to access this data when connection is available and add the image…
JeanPaul Galea
  • 113
  • 3
  • 11
0
votes
2 answers

Cache Manifest Caching Itself

Really stumped on this one. I'm trying to cache some resources with the HTML5 cache manifest (yes, I know, don't judge me), but the manifest seems to be caching itself. The manifest file is actually a dynamic PHP script, so it has a .php…
Jeffrey Sweeney
  • 5,986
  • 5
  • 24
  • 32
0
votes
1 answer

Why isn't my cache manifest kicking in?

This is driving me crazy to no end. My cache-manifest isn't loading. And I have no idea why not. The header is as follows:
das_boot
  • 113
  • 2
  • 9
0
votes
1 answer

Clear HTML5 Appcache when offline

I have a webapp that works offline. I would like to set an expiration date to the cache so if the user does not reconnect to the server for a certain amount of time the cache is cleared and the user cannot use the application anymore. I think the…
Roberto
  • 504
  • 11
  • 23
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
0 answers

Homescreen Web Application and AD Authentication

I have an HTML5 website which has AD authentication. Inside this website, I have a webpage which I would like to be a "web app" on an iPad. I have the cache.appcache file all ready and working fine in an environment where there is no AD…
Graeme
  • 1,657
  • 5
  • 28
  • 46
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

HTML5 cache downloads root every time

I am playing with HTML5 app cache and right from the beginning I ran into issues:/ I am trying to have simple offline fallback for my page so that there would be nice styled page instead of classic offline error. According to few resources I have…
simekadam
  • 7,334
  • 11
  • 56
  • 79
0
votes
0 answers

cache pictures from several picture-servers with html5 manifest

I am making my first steps with the manifest chache stuff and stumbled over some problem. I have several picture-servers, to optimize the loading times. so an image can be delivered from i.e.: pics1.domain.com/images/img1 or…
helle
  • 11,183
  • 9
  • 56
  • 83
0
votes
1 answer

How to make folder urls offline with HTML5?

My web application uses folder urls only (with mvc routes). I am wondering how I can cache some of these urls, and prticularly the site root. CACHE MANIFEST / . /myfolder /myfolder/ myfolder Thanks for the help.
Harps
  • 640
  • 8
  • 17
0
votes
1 answer

HTML5 browsers hanging on to cached manifest file

I'm using HTML5 appcache and mostly it's working well. However, sometimes, users' browsers (Chrome or Safari) will hold onto the cached manifest file even though I'm positive that the server has a brand new manifest file with a unique version…
Andy
  • 2,709
  • 5
  • 37
  • 64
0
votes
1 answer

HTML5 Cache Manifest does not load ressources unless it is located at the root of the website?

I have a website with a cache manifest described using ... The manifest is very simple : CACHE MANIFEST CACHE: /fira.jpg /offline.php FALLBACK: /no.php /fallback.php When my site is deployed under a domain…
0
votes
1 answer

How to dynamically set proper cache manifest files for Retina and non-retina displays?

I need to show an HTML page in an UIWebView under Retina and non-retina displays. Moreover I'd like to use the cache manifest functionality from HTML5. But I want to have two different cache manifest files with links to Retina and non-retina…
misho
  • 1,195
  • 6
  • 16
  • 29
0
votes
2 answers

HTML5 Cache Manifest Links are Broken when Offline

I've successfully implemented a HTML5 cache manifest file to store locally the pages and resources of my web app so that portions of it may be viewed while the user is offline. The problem I'm running into, is that if the user starts on…
adamdehaven
  • 5,890
  • 10
  • 61
  • 84
1 2 3
17
18