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

Caching php pages in HTML5 appcache

I am developing an offline application which has a set of .php pages too. Currently I have put those php files in a .appcache manifest files and it works fine. But the issue is, even though I am online, when I try to access a php page, it loads the…
Aruna Tebel
  • 1,436
  • 1
  • 12
  • 24
5
votes
1 answer

Use application cache only when offline

I have used html5 manifest to store a web app offline. I only want the offline version of the app to load when there isn't an internet connection. When there is an internet connection i want to be able to run directly offline. Is this possible?
John williams
  • 654
  • 1
  • 8
  • 22
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
1 answer

Javascript stops when loading from cache manifest in webapp

My javascript code stops when the side loads from the cache manifest in the Fullscreen WebApp Mode(iPad3/iOS6). This has the consequence that you cant do anything in the first 5 seconds. After that you can use the site as normal. 1) Why does the…
skull3r7
  • 215
  • 1
  • 4
  • 9
5
votes
1 answer

HTML5 New Cache not applying

I have an HTML5 app that has a large manifest file, containing, among other things, a lot of PDFs. On the first visit, the cache downloads over several minutes and applies properly. When I make changes and update the manifest accordingly, it…
sreimer
  • 4,913
  • 2
  • 33
  • 43
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

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…
4
votes
1 answer

Use Delphi+Intraweb to create HTML5 offline application (cache manifest) with browser storage (webSQL/IndexedDB) possible?

My current Intraweb application is actually a DataSnap Client which connect to my DataSnap Server that connects and sits together with an Interbase Server on the same machine. It works correctly but quite slow and require constant Internet…
Colin Jong
  • 63
  • 1
  • 6
4
votes
2 answers

HTML5 Cache Manifest: Fallback section & Network *

from Dive into HTML5: Cache Manifest: Fallback section CACHE MANIFEST FALLBACK: / /offline.html NETWORK: * i dont understand from the URL given what this block of code exactly does. does the fallback section mean when anything is not found, show…
Jiew Meng
  • 84,767
  • 185
  • 495
  • 805
4
votes
1 answer

how can I do manifest request with WKWebView

I was trying to use the new WebView in my app, but it seems that WKWebView can't work with NSURLCache, and Manifest request didn't work, no request was loaded and also nothing was stored. Everything seems to work better using WKWebView instead of…
humphry
  • 41
  • 5
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…
4
votes
0 answers

Cache manifest is not working in MVC4 application

Here is my CacheManifestHandler. Manifest file generated doesn't cache any thing that is specified in virtual path. Kindly review the code. Manifest file generated by the below code does not contain the items in cache file. public class…
4
votes
0 answers

Videos not playing on Android in an offline state when using appcache

I am having an issue with trying to cache and play videos in an offline state on an Android device (Samsung Galaxy Tab) using the appcache manifest file. My file looks like this (below). It worked fine on iOS. Android will pull in the stylesheet…
sean
  • 1,220
  • 9
  • 8
4
votes
1 answer

AppCache works fine with Firefox (30) but not with IE (11)

I'm trying to provide an offline version of my asp.net website. So if i call my Default page it should load the offline.html. In Firefox its working, in IE (11 and i tested 10 in Emulation mode) not. Manifest.appcache CACHE MANIFEST # version…
4
votes
0 answers

Requests from the HTML5 AppCache have no referer header set

I'm having trouble with the HTML5 AppCache and the requests that it sends, so I wrote a small demonstration of the problem. First, there are two HTML files. One is called withmanifest.html, and looks like this:
1 2
3
17 18