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

5
votes
1answer
101 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 ...
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
607 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 ...
3
votes
1answer
703 views

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 ...
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 ...
2
votes
1answer
793 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 ...
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 ...
1
vote
1answer
429 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 ...
1
vote
1answer
309 views

Chrome serving resource from cache when it is not present in cache-manifest

I am playing around with HTML 5 cache manifests, and I am seeing a very strange issue in Chrome. Here's the page's header: <html id="html" xmlns="http://www.w3.org/1999/xhtml" ...
0
votes
1answer
16 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
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
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 ...
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 ...
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 ...
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 ...
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
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 ...
0
votes
1answer
44 views

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

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

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 <html manifest="site.manifest">...</html> The manifest is very simple : CACHE MANIFEST CACHE: /fira.jpg /offline.php FALLBACK: ...
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
0answers
50 views

Can cache manifest be used as a “firewall” for a page or a web app?

When playing with HTML5 cache manifests, I eventually learned, that listing / under the NETWORK segment effectively rejects all off-domain connections, like CDN links for example. CACHE MANIFEST ...
2
votes
0answers
473 views

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 Adnroid 3.2 and 4.x tablet, video will play only online, but not offline - although other ...
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 ...
1
vote
0answers
132 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 ...
1
vote
0answers
77 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 ...
1
vote
0answers
569 views

IOS 6 Cache Manifest

I'm noticing some oddities now that I'm checking out the iOS 6 <--> OS X Web Console. It seems that when I update a css file that's supposed to be cached, iOS 6 downloads the new version ...
1
vote
0answers
67 views

How do I set an HTML5 offline fallback for my homepage when it's just `/`?

As a modern database-driven website, our homepage is simply / instead of /index.html. But when I try to set up an offline fallback for just our homepage, it (as the spec intended) sets the fallback ...
1
vote
0answers
227 views

Cache-Manifest How to handle authentication cookies?

How are authentication cookies read/stored when using cache-manifest? I am using cache manifest to speed up a jquery-mobile app that has a browser baseline of Safari Mobile. I am using the ...
1
vote
0answers
129 views

HTML5 Manifest only see fallback

Hey guys my Manifest is as follows: CACHE MANIFEST CACHE: images/trunk/text/text-images.png css/site.css FALLBACK: / offline.html NETWORK: * I've since fixed a random random problem whereby ...
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 ...
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 ...
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 ...
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, ...
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
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 ...
0
votes
0answers
31 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
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
166 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 ...
0
votes
0answers
77 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 ...
0
votes
0answers
145 views

Cache Manifest work around for IE9?

IE9 is the only major browser that doesn't support cache manifest for offline browsing. I was thinking a combination of bouncing to all the pages in an invisible iframe combined with some setting in ...
0
votes
0answers
139 views

ie9 Cache Manifest?

IE9 does not support cache manifest. If you send IE9 to an iframe it will cache certain things in the iframe. So until the user shuts down the browser IE9 has naturally cached a lot of the things you ...
0
votes
0answers
34 views

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

Manifest solution for IE9?

Is there any solution out there which will give HTML5 manifest functionality to IE9? I think this is possible or at least possible enough (maybe combined with some instructions for users about ...
0
votes
0answers
16 views

Is there a javascript or IE plugin that lets IE use a manifest file?

I am pretty sure I could write one leveraging what IE naturally stores (css, js, images) with writing page templates to localStorage. Maybe the user would have to set a setting or two. Is there ...
0
votes
0answers
201 views

xmlHttpRequest fails when running offline web app from cache on Android 2 and 3

Im bulding an offline web application on sencha touch 2. My problem is that xmlHttpRequest fails with status 0 and empty response when doing a get to a Rest API. The problem only occurs when using a ...
0
votes
0answers
41 views

Are the URLs in a HTML 5 manifest file case sensitive?

Assume I have the following URLs: Home/Index Home/IndexOffline Assume I have the FALLBACK section in my manifest defined as follows: FALLBACK: Home/Index Home/IndexOffline Now, if I go offline, ...
0
votes
0answers
137 views

Dynamic pages in application cache re-downloaded on update

All of our dynamic pages return the same static HTML file (generated when we deploy) which links to a cache manifest file containing our JS, CSS, etc. E.g. example.com, example.com/article/1234, and ...
0
votes
0answers
270 views

Videos broken after cache.manifest

So I am trying to get a web app to cache a few videos so they play offline. The web app will be only for iPad. My HTML is 4 simple videos, a stylesheet and a debug.js file. <!DOCTYPE html> ...
0
votes
0answers
125 views

Netbeans HTML5 Project cache manifest version

I have a Netbeans (v7.1.1) HTML5 project that I deploy via Run As Remote Web Site What I would like to do is increment a number in the cache manifest automatically at run. Is there a way to accomplish ...

1 2