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.
2
votes
3answers
236 views
Control appcache download
I've developed an iPad web app that uses the appcache. It's not intended to be a fully offline app but I use the appcache to store large image files so that they're not sent over 3G. Problem is when ...
0
votes
1answer
11 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 ...
0
votes
1answer
10 views
Adding a NETWORK section to HTML5 manifest file and accessing iPhone web-app in airplane mode
The facts
I'm building an HTML 5 responsive website with an offline mode. To do that, I'm using a manifest file with a FALLBACK section and the browser's localStorage to store the pages that the ...
0
votes
0answers
7 views
offline cache manifest but get “err_internet_disconnected”
I've set up a Cache Manifest for my app. I try running it in Chrome for Android in airplane mode, but I get a generic Chrome error "err_internet_disconnected." Shouldn't the cache manifest kick at ...
0
votes
1answer
33 views
HTML5 appcache: images in CSS
Let's say I have a website with following pages:
www.server.com/index.php
www.server.com/anotherPage.php
www.server.com/css/style_for_index.css
www.server.com/css/style_for_anotherPage.css
...
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 ...
7
votes
2answers
360 views
What is the difference between HTML5 AppCache and the normal browser cache?
I don't understand the point of the HTML5 AppCache. We already have a normal cache. If you visit a website the first time it'll already cache all the assets. What extra value does the AppCache ...
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 ...
0
votes
0answers
16 views
firefox displays fallback page for files mentioned in Network section that not be cached
We are using HTML5 offline cache. We have polling code that checks whether the user in connected or disconnected to server/network. The online detection is done by calling one test jsp page which is ...
0
votes
0answers
14 views
Application Cache intermittently fails with status 0
I've found several "cache status 0" questions, but none that fit my scenario.
I have the application cache working most of the time. But occasionally on mobile devices (various browsers and OSes) it ...
0
votes
1answer
24 views
html5 offline cache is caching all files instead of cached files that are listed
I am trying to use offline caching of html5. But problem is it is caching all html files and not the ones I mentioned in cache manifest file:For ex: I have 4 html files: index.html, test.html, ...
0
votes
2answers
171 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
0answers
61 views
How to clear application cache for iphone5 using jquery?
I created the web app(iphone 5) for student details using jquery mobile, HTML5 and css. It contains five pages.If i worked in the browser then its working fine, but when i used the web app then newly ...
0
votes
0answers
11 views
What types of files get deployed with FTP Publish Option VS2010
I'm publishing a website with VS2010 using FTP. Even though the .appcache file is included in the project, it is not getting deployed. Is there a setting for this?
0
votes
0answers
10 views
Use appcache with Chrome frame (or detect that it doesn't work)
We are building a web-application that will be used offline, using the Application Cache (and a lot more stuffs).
The thing is, we wanted to ask our users with old IEs to use Google Chrome Frame, ...
0
votes
0answers
66 views
how to remover _= while including js files
I am adding a few js files to my page. It is adding _=(random number).js to the js files by default while accessing page.
I have added the same files in appcache but when I am accessing from cache ...
0
votes
0answers
31 views
Transfering data over XML for offline webapp
I have a HTML5 offline web app. I have stored all my data in MySQL database in a server. I want to store some list derived from the database in the offline storage. I use XML for that.
How can I do ...
1
vote
1answer
189 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 ...
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 ...
0
votes
1answer
13 views
html5 cache manifest setting up
According to the manual I read online, in order to use cache manifest, I need to do the following two steps:
1. I need to add 'AddType text/cache-manifest .manifest' in a .htaccess file.
the question ...
0
votes
0answers
17 views
How to inspect the HTML 5 application cache on iOS
Is there a way to inspect the HTML 5 application cache of an website which is linked on the homescreen by an icon?
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
1answer
31 views
Appcache offline
We are working on content loading where in case if we are connected,the content should be brought from network. If we go offline, it should bring from cache. what settings should we do perform this. ...
0
votes
1answer
480 views
AppCache on Android Devices
I have this weird problem in trying out an appCache website on android phones. I've tested it in a Froyo 2.2 Android device. I'm testing the capability of AppCache on Android phones using this ...
4
votes
1answer
230 views
Android Browser Issue with jQuery Ajax and when appcache is used
we are having a problem with the built in browser on Android 4.0, 4.1 and 4.2 (we haven't got anything lower to test on).
The problem is that the ajax call will work perfectly on first load, you can ...
2
votes
1answer
843 views
Appcache on Android Webview not downloading sources
I know my web app's appcache works nicely because I've tried it on Chrome, even on Chrome for Android it works, but it doesn't when loading it in my Android app from a webview. I have the following ...
0
votes
1answer
77 views
HTML5 `favorite` offline caching
I'm currently building an application with which you can create playlists of song lyrics and cache them for use offline. You can also cache your favorites (JSON array).
Now, because the favorites are ...
0
votes
0answers
85 views
How can I clear the application cache in IE10?
In Internet Explorer 10, how can I manually clear the application cache for a Web page?
0
votes
0answers
30 views
Can we add HTML5 local cache support for another web application iOS?
Please pardon me if this question doesn't make sure. At this point, we are looking for ways to enhance another web application for offline cache support by adding some plugin/html5 local cache. There ...
1
vote
1answer
43 views
What happens when application cache fallback URLs are unloadable?
MDC states that the browser loads fallback files when network requests fails:
Fallback entries are used when an attempt to load a resource fails.
For example, let's say the cache manifest file
...
0
votes
0answers
23 views
How do I retrieve Google Chrome's Local Storage and Cookie info
Firefox has an addon called SQLite manager which is great. Is there anything like this for Google Chrome?
0
votes
0answers
24 views
How to go every time Offline in html 5 app
I am developing a single page application using jquery mobile and html 5 offline features.
what i need to do is ,even if the network connection is available application should work in offline ...
0
votes
1answer
67 views
Appcache Manifest not working
I have the following appcache manifest:
CACHE MANIFEST
# Cache Manifest timestamp: 1361723106
CACHE:
offline.html
offline2.html
offline.manifest.php
NETWORK:
*
FALLBACK:
/ offline.html
I am ...
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
76 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
24 views
Prevent application cache from being discarded after cache manifest returns 404
I've created a web app and placed it on our intranet web server. If an iPad loads the app while on the intranet network, the app works. If I turn on airplane mode, the app works in offline mode.
...
0
votes
0answers
64 views
Android 4.0.1 AppCache Update
I have two html pages , index.html and app.html and have included the manifest attribute in index.html (the manifest file also includes app.html ). In the callback of application cache events binded ...
0
votes
1answer
90 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
0answers
65 views
Dojo Xhr: Result Content is Not Appearing until there is a mouse click anywhere on page
i'm building an offline application with Dojo 1.7, using Dojo RDD, generating forms dynamically and storing them in cache.
now every time when i fetch something through ajax i have to remove dojo ...
0
votes
2answers
178 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
0answers
65 views
Appcache for blogs/dynamic content
I'm in the process of optimizing our mobile site and i'd like to allow our users to view content offline. HTML5 Appcache seems like the best option for this but all use cases that i've seen show ...
1
vote
5answers
662 views
How to store 40.000 images using HTML5 or Phonegap?
I have searched a long time for a way to store a large number of images in HTML5, or access them stored locally and display them.
The application is a product ordering and catalog, like an e-commerce ...
1
vote
1answer
66 views
SSL path in appcache network being restricted in Chrome
Seeing some odd behaviour in Chrome, and not sure if it's expected behaviour when using appcache, or just Chrome.
It's a single-page app, powered by our RestAPI, it works fine when the RestAPI is ...
1
vote
0answers
72 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
40 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 ...
0
votes
0answers
23 views
is it possible to update the cache manifest file after it has been downloaded?
We are building an ASP.NET MVC 4 web application. We are researching potentially using the cache manifest capabilities of html5 to provide our user with a limited offline experience.
All is good for ...
0
votes
0answers
69 views
Django and Tastypie + Appcache = ajax requests are not working. Help please
Here is my problem. I have an HTML offline app that works fine without app caching but when I use app caching (i.e. a manifiest file) the ajax requests to my Tastypie api won't work.
When a user ...
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
0answers
101 views
Meta Viewport not working on iOS Safari when document is loaded from .appcache
I'm having a problem when trying to load a web page with a hardcoded <meta name="viewport" content="width=420" /> in mobile Safari on iPhone. The first time it works perfectly, but the next time ...
0
votes
0answers
37 views
HMTL5 offline caching not working when redirects for authentication
I am using HTML5 offline caching in my ipad application. The application has an centralized server for authentication. Whenever a URL is requested it is authenticated and then only web server is ...





