The cache manifest in HTML5 is a software storage feature which provides the ability to access a web application even without a network connection.

learn more… | top users | synonyms

2
votes
2answers
384 views

Application Cache manifest file errors with Windows/NTLM authentication

How are browsers implementing requests for Application Cache manifest files and is it different from how other files are requested? I ask because I'm seeing behavior I wouldn't expect when using ...
0
votes
1answer
18 views

HTML5 Cache Manifest Fallback Page

I am trying to get the Cache Manifest to fallback to an offline.aspx page when offline. So when the current page that contains the following cache manifest is loaded online it displays as normal, but ...
0
votes
1answer
106 views

How would HTML5 offline manifest/functionality work with ASP.NET MVC 4?

Ok, I'm building a PoC for a mobile application that needs to have offline capabilities, and I have several questions about whether I'm designing the application correctly and also what behavior I ...
1
vote
1answer
59 views

Does HTML5 cache manifest caching work differently than regular browser caching?

Ok, I'm building a PoC for an ASP.NET MVC 4 mobile application that needs to have offline capabilities, and I have several questions about whether I'm designing the application correctly and also what ...
1
vote
0answers
18 views

Explicit versus master entries

I am currently building a simple framework allowing developers to create application cache dynamically, modullary and simply and reduce the mistyped resources. One thing I am now dealing with is what ...
2
votes
1answer
175 views

Right way to design a mobile ASP.NET MVC 4 data entry application with HTML5 offline capabilities

I'm creating a PoC of an ASP.NET MVC 4 mobile application (tablets) for field operators that needs to support offline capabilities. It's a relatively simple data entry application with a WebAPI ...
0
votes
1answer
38 views

GWT-app permutation script not cached on iOS devices when web-app capable

Recently I discovered a problem relating to caching in my GWT app when running on iOS 6.x devices in web-app (fullscreen) mode. The problem is that iOS seems to ignore my cache policy directives on ...
6
votes
3answers
591 views

HTML5 Android Phonegap Web app not working offline with cache manifest

I have a simple web app built with Phonegap and Android that call external ressources (js, css, html) from server instead of storing it in Phonegap assets folder. I prefer using external ressources ...
0
votes
1answer
30 views

Remove file from HTML5 manifest

If I remove a file reference from the HTML5 cache manifest, will the browser (mobile Chrome) remove the cached file at some point? I'm concerned about cache size as the files in question are PDFs. As ...
0
votes
1answer
28 views

Dynamic content with cache manifest

I'm facing several challenges building a web app with cache manifest. My challenge is dealing with dynamic content. If a user logs out and logs back into the app with a different account, how can I ...
0
votes
0answers
55 views

C# Web.Optimization Bundles and HTML5 cache Manifest

I am using ASP.NET optimization package to minify and bundle the scripts, and CSS files. I am also developing a mobile UI for my ASP.NET application which uses a HTML5 cache manifest. The ...
6
votes
1answer
671 views

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 ...
2
votes
2answers
130 views

Cross Origin request blocked by HTML5 cache manifest on Firefox

I am having problems doing some cross-origin requests with Firefox and the application cache. The error handler of my XHR request get called, and the status of the XHR request is 0. When I see the ...
0
votes
0answers
24 views

appCache FALLBACK doesn't work on the url provider of the manifest file

I have using the appCache manifest feature to enable the offline mode, everything works well unless one point: i have a single page appliaction, the user download the manifest file from it (let's say ...
2
votes
1answer
3k views

strange behaviour with cache.manifest / offline usage of web app saved to home-screen on ipad ios6

I just discovered some strange behaviour on iPad with the new iOS 6. I'm testing a web app for offline usage. The web app is no more than a static website with a cache manifest, so no special ...
0
votes
0answers
19 views

Droid devices gives error message when loading a page in offline mode

I have created a asp.net site that works in online or offline mode using local storage and cache manifest. Everything seems to work as it should but I get an error message on droid devices that states ...
5
votes
1answer
609 views

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

Error message “statement aborts at 10” in PhoneGap android App with cache manifest

I am developing an Android App using PhoneGap. The App receives the frontend data fron a backend on the internet and make it an offline app using cache manifest. This worked for half a year now ...
1
vote
2answers
190 views

HTML5 appCache event for no update

I have a on page oad event that checks my manifest status, and if there is a change it asks the user to reload. However, I'm trying to bind a <button> to manually check if there is a status on ...
0
votes
1answer
48 views

Html5 Cache Manifest not working correctly

I am starting to work with offline webapps. I made a cache manifest for a test site but i cant get it to work. I trying that when offline it redirect from index.html to offline.html but it just ...
2
votes
0answers
191 views

Phonegap offline caching website

I have a website configured with cache manifest, which i will be loading in the android through phonegap. This is the following code that i am using @Override public void onCreate(Bundle ...
2
votes
1answer
58 views

How Can I get ChillBox (a LightBox clone) to work on an offline webapp using cache.manifest?

I am building a web app for an iPad (designed so my boss can show information at meetings). So far I have everything working, except for one thing- I am using an application cache to allow the app to ...
0
votes
1answer
29 views

Mobile and HTML Manifest Cache Performance

I'm considering developing a web app that allows users to create a calendar of deadlines based on events stored online using the HTML5 manifest to store some basic user information. Before starting ...
0
votes
1answer
40 views

Cache manifest - what happens to a cached page that links to an updated/invalidated manifest?

Imagine this scenario: /pageone.html and /pagetwo.html both reference /cache.manifest. Neither page are explicitly mentioned in the manifest. A user visits both /pageone.html and /pagetwo.html while ...
1
vote
1answer
464 views

What is the maximum cache size for iOS6 web apps and how can I extend it?

I'm building a web app especially for the iPad (running iOS 6+) showing the product collection of a company. It all worked perfectly using HTML5's "cache.manifest" file. But since the cache has grown ...
1
vote
1answer
92 views

How to handle browser refresh with dynamic cache manifest

Here's my scenario: A web site has an index page and a number of content pages (for the sake of argument these are called page1 through page100) all pointing to the same cache manifest URL. The ...
0
votes
0answers
54 views

How can i use DELETE_CACHE_FILES using Manifest.permission class in Android

I'm new to Android Technology. My intention was to create an app that clears all the cache, web history, un-used memory using with the help of Manifest.permission CLEAR_APP_CACHE, ...
5
votes
1answer
447 views

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 ...
1
vote
1answer
656 views

HTML5 appCache manifest referencing a directory's default document

Throughout a jQuery mobile site I am working on I have anchor tags that refer to urls in the following manner: "/directory/" "/directory/subdirectory/" which are of course referencing: ...
0
votes
1answer
73 views

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 ...
7
votes
2answers
4k views

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

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 ...
1
vote
0answers
133 views

Why doesn't my iOS standalone web app re-retrieve cached images from the server?

I have created a single page website that is designed to be installed on the iOS home screen and accessed as a standalone web app. It's a single page and a cache.manifest ensures that the related ...
0
votes
1answer
265 views

Making HTML5 app available offline

I am working on an HTML app for a client. The entire app front end is done with 1 HTML file, 1 Javascript file, 1 CSS file (plus jquery) and a few images. There are a few php scripts sitting on the ...
5
votes
1answer
102 views

Unable to fetch iOS webapp files on manifest update. 401 unauthorized

I have a HTML5 webapp which is running perfectly when served via the IIS without authentication. Is is using a cache.manifest file. Both when running in safari, and as an "add to homescreen" ...
0
votes
1answer
228 views

Chrome app cache doesn't work on first load, only on refresh

Our offline app works great in Firefox, but over the past month or two it's had various problems in all recent version of Chrome and Chromium. This is the latest issue I'm seeing in Chromium ...
1
vote
2answers
178 views

HTML 5 offline applicatin failed to load cached resource

I have cache static resources of my website using manifest file But when I run website when internet is not connected images not shown. Images also should cache because I putted them in manifest ...
-1
votes
1answer
232 views

Offline WebApp Game for iPad [closed]

I'd like to make a super basic one-button space invaders game on iPad via an offline webapp (using the cache.manifest and canvas). Enemies would fly by your ship and you simply press a button to shoot ...
7
votes
1answer
231 views

Simple way to add a cache manifest to a Meteor app?

I would like to make the Meteor (meteor.com) app load without connectivity to the meteor server(offline) via cache manifest. I think a similar question has already been asked here: How can I add a ...
0
votes
0answers
32 views

What hosting services work for .appcache files?

I'm creating an HTML5 game with an engine, (construct 2 to be exact, but I don't think it really matters) and I want the game to be able to wirk offline. The way it does this is by using a .appcache ...
5
votes
1answer
80 views

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 ...
7
votes
2answers
2k views

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 <html> tag, ...
5
votes
5answers
752 views

HTML5 Cache — Is it possible to have several distinct caches for a single URL?

Every URL can be linked to a single cache manifest. But I want several cache manifests linked to a same URL. Here is the reason: Some files I want to be cached are rarely updated and large. So ...
4
votes
1answer
2k views

Mobile Safari: Audio + cache manifest

I'm having a small web app, which plays really short sound bits on the click of several buttons. It explicitly targets mobile Safari on iOS (iPad). After reading here and elsewhere about the several ...
0
votes
0answers
61 views

rack-offline Gem:How to exclude certain files from caching

I am using the gem rack offline( https://github.com/wycats/rack-offline) in my rails app for offline caching. Due to some reason I need make sure that certain HTML files are never cached offline and ...
1
vote
2answers
147 views

IOS 6 Caching Everything except Cache Manifest. Updated files never being requested from web server

Our web app is being cached so aggressively in ios 6 app mode that the only file being requested from the web server every time is the cache manifest. We have changed a bunch of scripts and html, but ...
0
votes
1answer
114 views

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 ...
0
votes
2answers
56 views

Application cache manifest - still keeping files in cache after “manifest” is removed from <html>?

The application cache is automatically checking and updating files every time the client visits the site. Lets say that the cache is only to be updated upon click of a button. The click adds the ...
0
votes
1answer
81 views

HTML cache manifest download all files

It seems that if the cache manifest on the server changes it will re-download everything in file? Is there any way to only make it re-download some of the files? If I only make code fixes to a script ...
0
votes
1answer
73 views

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: <!DOCTYPE html> <head> <html ...

1 2 3