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.
3
votes
1answer
328 views
application cache & 404/500 pages
I have a manifest that looks somethin like this:
CACHE MANIFEST
# e4a75fb378cb627a0d51a80c1cc5684c2d918d93e267f5854a511aa3c8db5b1a
/a/application.js
/a/application.css
NETWORK:
*
FALLBACK:
/ ...
3
votes
3answers
2k views
How can i store a 50MB video in HTML5's app cache?
I'm developing an iOS offline app, and i'm trying to store a 50MB video for offline viewing. However after properly adding the video's url in my manifest.appcache, I got a console Error saying that ...
0
votes
2answers
179 views
Hosting a GWT Webapp in IIS
I am currently trying to configure an ASP.net Web Application through Web.config, to host a GWT WebApp in a specific folder. I've managed to configure the mimeMap for the .manifest file extension in ...
0
votes
1answer
60 views
Trigger AppCache Download
Is there a way to trigger an application cache download? I've seen several webapps which provide a download for offline storage button, but it seems there's no event for this.
Dynamically changing ...
1
vote
1answer
772 views
html5 appcache adding/removing specific files
Say I have a simple appcache manifest that looks like:
CACHE:
# v1
# images
images/one.jpg
images/two.jpg
images/three.jpg
I then use some server side method to update the manifest to:
CACHE:
# v1
...
2
votes
1answer
372 views
html5 appcache load order
I'm creating an app with a number of videos/large images that will use appcache to handle the preloading of them.
Is there a way for me to control what order those assets get loaded? For example, I ...
0
votes
1answer
256 views
HTML5 Application Cache manifest file location on hard drive
I have a site which uses HTML5 App Cache and I'm having trouble determining why the cache update started. I haven't made changes or added/removed files.
The manifest file is generated dynamically ...
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 ...
3
votes
1answer
659 views
Removing HTML5 Appcache Manifest, Permanently
I setup an Application Cache on a site and shortly thereafter realized its way more aggressive that I realized. I want to remove it. Permanently.
I've read that passing a changed manifest file, ...
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 ...
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
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
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
288 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
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
457 views
Appcache manifest - does not load, does not validate
The example application is here: http://web2485.increo.no, with manifest: http://web2485.increo.no/cache.appcache
The server is configured with the right mime type for .appcache ...
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 ...
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
1answer
243 views
Best way to use HTML5 App Cache for caching OGG files for Firefox but MP3 for IE?
Anyone have suggestions on how to best handle using App Cache when you have sets of assets used in one browser but not in another?
Example: OGG audio for Firefox and MP3 for IE. I can cache both ...
3
votes
1answer
666 views
Omit current page from HTML5 offline appcache but use cached resources
For performance purposes, I want to have some of my web pages use resources that have been cached for offline use (images, CSS, etc.) but to not have the page itself cached as the content will be ...
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 ...
9
votes
4answers
2k views
Pre-populate HTML5 offline appcache for a UIWebView in an iOS application
Is it possible to create a UIWebView that has an HTML5 offline appcache pre-populated so that it will work offline even if it is the first time the user is accessing the UIWebView?
If so, how?
I ...
3
votes
2answers
2k views
HTML5 Application Cache not working in ie8+ so need its alternatives for ie
HTML5 Application Cache not working in ie8+, so i need some of the solution which makes my resource available even in offline mode in ie8+ browsers, in all other browsers the html5 appcache is working ...
1
vote
2answers
343 views
HTML5 appcache: what is the NETWORK: section really for?
I can't find any case where someone doesn't want to put all their URLs in the NETWORK: section:
NETWORK:
*
If a resource isn't in the CACHE: section, nor in the NETWORK: section, the resource won't ...
0
votes
1answer
1k views
AppCache mime type with IIS7
We're hosting a couple of HTML5 games that utilise the offline.appcache feature letting games cache a lot better.
To serve the .appcache type however, I had to add the mime type to the server (IIS7) ...
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, ...
0
votes
1answer
214 views
Cache manifest are not loaded
I want to use html5 manifest file. To cache the mose important things of the website. I have make a manifest file and cache the most important things. I cache the important images that are used in all ...