Questions tagged [cache-manifest]

The cache manifest is a part of the deprecated HTML5 application cache (AppCache) feature, which is intended to provide users with the ability to access a web application even without a network connection.

Web applications consists of a list of web addresses. These can be HTML, CSS, JavaScript, images or any other source that is required for a web application to be rendered. These addresses or URLs can be copied onto a manifest file, which can be updated regularly by the author of the web application, indicating any new web addresses that are added or deleted. When connecting to a network for the first time a web browser will read the HTML5 manifest file, download the resources given and store them locally. Then, in the absence of a network connection, the web browser will shift to the local copies instead and render the web application offline.

(Source: wikipedia.org/Cache_manifest_in_HTML5)

262 questions
2
votes
0 answers

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 assets are cached offline. After a lot of ups and…
2
votes
1 answer

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 (user version) Role admin -->…
Chimi
  • 55
  • 1
  • 6
2
votes
1 answer

Grails Resources Plugin -- How to get generated urls?

Does anyone know how i could access the exact url that the resources plugin would spit out? I want to use the resources plugin to optimize transfer of my javascript files, however, the application i'm writing is an html5 offline app that uses cache…
John Gordon
  • 2,181
  • 5
  • 28
  • 47
1
vote
1 answer

Cache Manifest working flawlessly in Chrome, Safari, but NOT mobile Safari

Trying to utilize a cache manifest -- everything seems to work fine in Chrome and Safari, but not mobile Safari. I've ensured that I've adhered to standards outlined for HTML5 offline apps: Added to the single-site…
1
vote
0 answers

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 safari couldn't load google maps without NETWORK *.…
williamsandonz
  • 15,864
  • 23
  • 100
  • 186
1
vote
1 answer

Access Control and Cache Manifest for Offline Use

I would like to gather some feedback on how best to handle access control within a web application that has a requirement for offline use. The app must have access control via username/password but must be available for offline use. That means that…
Upworks
  • 267
  • 2
  • 15
1
vote
1 answer

Variable HTML5 offline appcache for different devices

I'm creating an HTML5 game. The game is cross platform and has different graphics sets for devices with different screen resolutions. Lower quality set is for mobiles and the other one for tablets and PCs. Now I want to make my application work…
1
vote
1 answer

Cache manifest not refreshing immediately in iPhone

Im experimenting with a site using the cache manifest on iPhone. Ive added the following to my .htaccess file to prevent the browser caching the manifest file: ExpiresActive On ExpiresDefault "access" If I change one of my pages and also add a…
Evanss
  • 23,390
  • 94
  • 282
  • 505
1
vote
2 answers

cache manifest with asset pipeline

What would be the best way to have a html5 cache manifest with the rails asset pipeline? I'm thinking of adding an erb file to app/assets that has the paths of all the assets contained in it. This would work but has a couple problems right off the…
Jeff Dickey
  • 5,036
  • 4
  • 28
  • 39
1
vote
1 answer

Is there limit to number of files that can be cached in html5 manifest?

I have lot of .PNG images numbering from 1 to 259 with a total size 250kb. I need these images to be available as thumbnails when the app is used in offline mode. So I created the manifest including all of these resources and then added the manifest…
1
vote
0 answers

Cache manifest in HTML5 does not work in google chrome but perfectly working in Mozilla Firefox

Hope everyone is fine. I am facing a new problem of Cache Manifest. I am using it with my php application. It works fine in mozilla but not works perfectly in mozilla firefox. Here is my code. Please suggest me how can i overcome this…
1
vote
1 answer

HTML5 - ApplicationCache not updating (only) some files

I've got an application that is using AppCache to store resources in the browser's cache. I've been able to set up the manifest on a PHP file in order to write automatically all files that must be cached (properly filtered). The headers of this file…
Unapedra
  • 2,043
  • 4
  • 25
  • 42
1
vote
0 answers

HTML5 offline manifest iPad Authorization

Our app is an ASP MVC application running with windows authentication. Safari seems to ignore authentication when trying to pull down the manifest and any cachable files, even though you sign in with your windows credentials, 401 errors are all we…
Herrozerro
  • 1,601
  • 1
  • 22
  • 37
1
vote
0 answers

Appcache is not caching files

I'm trying to use appcache, and it doesn't work. This is my manifest file: CACHE…
Francisco F.
  • 111
  • 1
  • 3
  • 14
1
vote
0 answers

Browser clear cache after changes

So I have a website which is basically done with javascript and html. Using .NET for the backend. The thing is, I the user see the changes every time updates are done to the HTML, css, and js files. I know I can add versions to the script tags, but…
EnderCode
  • 235
  • 1
  • 3
  • 12