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

0
votes
1answer
15 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 ...
1
vote
0answers
17 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
154 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 ...
1
vote
1answer
54 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 ...
0
votes
1answer
93 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 ...
0
votes
1answer
35 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 ...
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
27 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
51 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
3answers
550 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
0answers
22 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 ...
0
votes
0answers
18 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 ...
0
votes
1answer
84 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 ...
0
votes
1answer
46 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
186 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
2answers
126 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 ...
2
votes
1answer
56 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 ...
1
vote
1answer
416 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 ...
0
votes
0answers
53 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, ...
0
votes
1answer
39 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
91 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
1answer
72 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 ...
1
vote
2answers
181 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
93 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
128 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
222 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
votes
1answer
227 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 ...
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 ...
0
votes
1answer
251 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 ...
0
votes
0answers
59 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
144 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
111 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
1answer
71 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 ...
0
votes
0answers
30 views

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 ...
0
votes
1answer
80 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 ...
2
votes
1answer
774 views

PhoneGap Android - html5 cache remote resources (html, js, css, etc)

I've successfully created an android phonegap project and I'm capable of loading a remote web app. The point is, I need to cache remote resources on the device so that my phonegap app will work when ...
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" ...
2
votes
1answer
70 views

How to update programatically a page server side when using html 5 cache manifest without changing cache manifest?

I have an application who has different interface for different role I want to cache the application and update it if the user change his role example : Role user --> www.sample.com/index.jsp ...
0
votes
1answer
214 views

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

How can I clear the appcache on the Google Chrome iPad app?

I've written a little HTML5 based web app that I am trying to debug on the iPad using the Chrome for iPad app. I have added a cache.manifest file to my app which has some heavy caching in it of most ...
5
votes
1answer
99 views

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

html5 manifest cache https and external urls

I have the following cache.manifest file: CACHE MANIFEST \n CACHE: / /Content/Site.css /Scripts/base.js /Images/slider3.jpg ...
0
votes
0answers
164 views

HTML 5 offline cache - uncached files loading when added to home screen on ios

I have an offline manifest file for a web app. There are certain pages (UserInformationForm.htm in particular) that should not show offline, and instead offline.htm should be shown when there is no ...
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 ...
5
votes
1answer
1k views

Application Cache Error event: Resource fetch failed (-1)

I am trying to store a mp4 video file (rather small ~ 2.5MB) in the local app cache. Manifest looks like: CACHE MANIFEST viddy.mp4 Chrome (22.0.1229.94 m) will log the following in the console: ...
1
vote
0answers
76 views

Page disappears from cache after first redirect on chrome

I am trying to divert the user to an offline page when he comes to my site and the device is currently offline. The problem is I trigger the caching from the home page itself so the problem is when ...
0
votes
0answers
76 views

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

How To: Home Screen Apps and offline usage on ios 6 – cache manifest obsolete?

Since apple's ios update to ios 6 data/local storage for Web Apps and Home Screen Apps is handled differently than before. Before ios 6 they shared the same data. Now home screen apps have their own ...
5
votes
1answer
435 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 2 3