The Application Cache (or AppCache) allows a developer to specify which files the browser should cache and make available to offline users. Your app will load and work correctly, even if the user presses the refresh button while they're offline.

learn more… | top users | synonyms

1
vote
1answer
75 views

Only cache images with app cache

Is it possibly to only cache images in the html5 app cache? My manifest which almost works! CACHE MANIFEST #Version: 4 CACHE: Public/Images/about.png Public/Images/android.png ...
1
vote
1answer
78 views

HTML5 Application Cache Manifest - index fallback without catchall

I'm delivering a manifest for my app that looks something like this CACHE MANIFEST #1359542586541 NETWORK: * FALLBACK: / /index.offline When offline, it works correctly by returning index.offline ...
1
vote
1answer
165 views

Is HTML5 appcache better than using expires headers or localstorage?

consider the following scenario: site/app is only used online - requires active internet connection; all files have proper expire header settings; forcing file refresh can be handled via something ...
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
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
74 views

HTML5 application cache update issue (updates from browser cache)

I have been goggling quiet a while now without any luck on this issue, hope someone can help. The issues concern the application cache, browser cache and proxies when developing an web-app with ...
1
vote
0answers
43 views

appcache is being cached?

When I check google chrome for cached files ( chrome://appcache-internals/ ) I find this(among other files): Manifest, http://localhost/MUHMobile/cache.appcache 1.5 kB Does this mean that my ...
1
vote
1answer
190 views

HTML5 Offline web apps NOT working in Android 2.x, iPhone. (However works in Android 4.0)

Trying to implement offline feature of HTML5. After doing a lot of googling, this is how my code looks. (It's a django project; deployed in apache2.2 with mod_wsgi plugin) HTML ` <!DOCTYPE ...
1
vote
1answer
126 views

GWT / GAE offline app for android - Advanced

Hi guys here are a lot of posts about gwt offline possibilities. But none of them answer my questions completely. Here just a few excerpts: How to include external Javascript in GWT offline ...
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 ...
1
vote
0answers
110 views

Why CSS is empty when SSL is on and appcache is enabled? (iPad, Safari)

I have created simple HTML page which uses HTML5's application cache feature. <!DOCTYPE html> <html manifest="test.appcache"> <head> <title>Test</title> <meta ...
1
vote
1answer
81 views

HTML5 App Cache- What should be the content under FALLBACK?

Please explain FALLBACK section in .appcache file. What should the file offline.html contain. What is the difference between CACHE SECTION and FALLBACK SECTION. I am able to understand that Cache ...
1
vote
0answers
75 views

Google Chrome looses cached data at system failure

I am building an intreactive information kiosk for public use. Making it a web app in Chrome. It need to work offline. My solution is using the browsers application cache. Problem: Chrome looses all ...
1
vote
0answers
362 views

ASP .NET MVC3 with HTML5 offline app wrong behavior when a user logged in

I'm trying to build an ASP.NET MVC3 (with razor syntax) based web app with HTML5 offline possibility, but unfortunately it does not work properly. I read a lot of tutorials from which I used a couple ...
1
vote
1answer
430 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
0answers
260 views

HTML5 / JQuery Mobile App - AppCache/Undesired caching

I've developed a JQuery Mobile app. I am using appcache to load nothing but the main page, images, and my JQM includes. I have * in the NETWORK section of my appcache file. It has been working ...
1
vote
0answers
383 views

Viewing PDF in Android / Chrome

I have a website caching pdfs offline with a .manifest-file. On the desktop version of Chrome the PDF can be viewed offline inside Chrome. But on the Android Chrome nothing happens when I'm trying to ...
1
vote
1answer
585 views

HTML5 offline appcache: Force refresh of all content?

My small HTML5 app needs to be re-deployed on a server. I understood I only had to touch the .appcache file to have every browser update to the last version of the files upon next visit. The manifest ...
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
110 views

HTML5 Cache Manifest: Fallback for external resources

I'm trying to create a manifest like : CACHE MANIFEST CACHE: offline.jpg http://externalSite/cacheDemo/offline.jpg FALLBACK: / offline.jpg http://externalSite/ ...
1
vote
2answers
159 views

Html5 applaction cache

I tried to work with Html5 app cache for run my application in offline mode. For this, I created test.html file and demo.appcache In this html page, i'm using some images from local host. When my ...
1
vote
0answers
499 views

Android appcache in android 2.2

I'm writing an android app that makes use of WebViews, externally hosted js files, and a manifest file to control appcache. Everything seems to work fine in android 4, but in 2.2 the caching doesn't ...
1
vote
0answers
259 views

HTML5 appcache with Chrome and the HTTPS Everywhere plugin causing cross site css not to load

I have run into an issue with one of my webpages that was changed to use the HTML5 appcache feature. Chrome 19 (ad I assume earlier versions) is blocking my cross site css files when the appcache is ...
1
vote
2answers
194 views

Use the locally stored version of the page instead of another request

I'm workin' on a web project where performance is a very important issue. EDIT: The situation: I wanna add some details about the user's workflow: The user visits the welcome page of my website ...
1
vote
0answers
298 views

HTML5 Make webrequest from cached iframe

Our situation: We have a main page wich contains a frameset. This has 2 frames (frame a and frame b). Using the Application cache (HTML5) we cache the main page and frame a. Frame b is a page wich is ...
1
vote
0answers
672 views

IOS5 AppCache not working

My site switchitoff.net has been happily using an appcache for a while now. It works perfectly on all browsers that support appcache, including Chrome, Firefox, Safari and Mobile Safari... except ...
0
votes
3answers
5k views

Application Cache manifest

<!DOCTYPE HTML> <html manifest="example.appcache"> <link rel="stylesheet" type="text/css" href="AppCache.css"> <meta charset="utf-8"> <title>Untitled ...
0
votes
1answer
406 views

Set HTML5 Cache Manifest from Javascript

I'm generating the cache manifest serverside, and I need to include bits of information through querystrings. My problem is, that the information I need to include is only obtainable by using ...
0
votes
1answer
144 views

Why is my cache manifest still not working?

I watch in chorme's console,there is nothing output,and no application cache why is this happen?thanks and here is my html: <html manifest="http://www.test.com/test.manifest"> here ...
0
votes
1answer
261 views

AppCache all images in a folder

I have a web client that gets its data (including images) from a web service. I'm already able to cache the web client so the user can use it even if he/she is offline. However I'm not able to cache ...
0
votes
2answers
543 views

Offline Cache Manifest Being Ignored On iPhone

I have a demo app which is supposed to be an example of creating an offline APP that works on mobile devices. I have created a manifest file and am serving it with the correct MIME type, but the main ...
0
votes
2answers
116 views

AppCache for 24 hours?

Recently I started using the <html manifest="cache.appcache"> method for storing assets in my PhoneGap application. Is it possible to use appcache but have it check every 24 hours for an ...
0
votes
1answer
99 views

Can Meteor's Appcache also store database data?

With the latest Meteor version 0.5.9 I've been experimenting with the appcache package, and really like its functionality. I used meteor create --example leaderboard and then meteor add appcacheto ...
0
votes
1answer
83 views

html5 application cache force update

window.applicationCache has a method named update. I assume this function fetches the manifest.appcache file as specified in the html element, and checks for differences. This is all well and good, ...
0
votes
1answer
79 views

HTML5 offline appcache custom fonts not loading or displaying properly when server is down

These fonts load perfectly fine when the server is running OR when the client is offline. But as soon as I shut down my server (let's assume it can't be contacted because it's down) the fonts break ...
0
votes
1answer
101 views

Redraw the saved image data to HTML 5 canvas

I am studying HTML5. I want to create / draw some shapes in canvas and save it in MySQL database and restore it in the canvas itself. I followed this tutorial And saved the data in database. I got ...
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 ...
0
votes
1answer
76 views

application cache: don't serve file from appcache on 404

I'm using the application cache to make my website also work offline. My manifest looks something like this and is embedded using an <iframe>: CACHE: favicon.ico assets/css/style.css ...
0
votes
1answer
951 views

Can't get HTML5 AppCache working correctly

I'm trying to add some offline caching to an app I maintain. This is the first time I've had to use AppCache so I've decided to test drive it with a small demo site first. I haven't been able to get ...
0
votes
1answer
637 views

HTML5 application cache - SSL and cross domain - any workaround?

from http://appcachefacts.info/: Over SSL, all resources in the manifest must respect the same-origin policy. The exception is Google Chrome, which doesn't follow the specification in this ...
0
votes
1answer
412 views

html5 IE9 Cache issue

I have the following: var webappCache = window.applicationCache; switch (webappCache.status) { case 0: console.log("Cache status: Uncached"); break; ...
0
votes
1answer
154 views

Force multiple users to remove their appcache [duplicate]

Possible Duplicate: My HTML5 Application Cache Manifest is caching everything I have made an webapp that could be cached, however the cache created a lot of problems, so I need them all to ...
0
votes
2answers
342 views

How can I use HTML5's application cache (appcache) to cache dynamic pages?

I have dynamic pages that I would like to make available offline. I'd like to use HTML5's application cache to do this. The problem is that I don't know all of the resources (JavaScript and CSS) for ...
0
votes
2answers
172 views

HTML5 appcache for media only

I want to cache javascript libraries and other static assets - but no HTML whatsoever. I was under the impression CACHE MANIFEST somefiles.js somemorefiles.js NETWORK: * Would do the job. It ...
0
votes
1answer
2k views

Apache not assigning correct MIME type for .manifest HTML5 offline file

I'm running XAMPP apache web server and developing an HTML5 project and the .manifest file is not being 'assigned' the correct MIME type by the web server. If a user accesses my HTML5 web app and ...
0
votes
1answer
289 views

why is the mime-type of an uploaded .appcache or .manifest file — “application/octet-stream”?

I have a file upload on a form and when I upload my file called "theManifest.manifest" or "theManifest.appcache" the mime-type is not correct. I use 'echo' in my php code to tell me the details of ...
0
votes
1answer
396 views

How can I enable offline web application for Chrome, Opera

http://t2.hellocw.com/index.html is an offline web application, it works well on FireFox but I found the offline web application function don't work on Chrome, Opera, do I need to configure something ...
0
votes
0answers
4 views

Access Uncached Files with HTML5's AppCache?

I have been trying to figure out HTML5's new AppCache, but I feel extremely limited here. Let's assume that I have a website with four pages: index.html about.html portfolio.html contact.html I ...
0
votes
0answers
7 views

Application cache html5 if file not cache try to go online

So I'm in the middle of a website which has to be accessible offline. To do so I'm using the appcache html5 feature. Everything works pretty good, my website is all cached without any problem. I ...
0
votes
1answer
12 views

HTML5 Cache usage with Querystring

i have a problem with the HTML5 caching. Here is a brief explanation about the thing i'm trying to do: I have a webpage(.aspx) to create and store a form. I'm using 2 different webservices in my ...