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
1 answer

How to get entries to cache manifest file

I'm quite new to cache manifest and appcache in particular. From what I understood, cache manifest is a file which lists those to be stored on the cache for offline use, correct? Whenever you visit a new page, the page itself and its resources will…
The Bassman
  • 2,241
  • 5
  • 26
  • 38
2
votes
1 answer

Check if my pages are cached

I have a page that links to a manifest file. The manifest file has many urls in it. Usually it takes a few minutes to load everything. How can I check if my pages have finished caching so I can tell the user "Your files are cached. It is safe to go…
2
votes
0 answers

cache manifest update error over mobile network connection on Iphone standalone web app

I'm creating a web app with asp.net . what I want is this app to be available offline with cache manifest and also to be on full screen(standalone) when is saved to home screen when used on smartphones. I use the code below to update the cache when…
2
votes
1 answer

Cache manifest manual updates

I want to provide users the ability to choose whether or not they want to update my Web app. From my research, cache manifest automatically fires the "downloading" event as soon as it finds a modified appcache file. The goal is to maintain this…
Applecot
  • 239
  • 1
  • 2
  • 9
2
votes
1 answer

How to implement manifest cache for mvc application

I am trying to implement manifest for one page. i don't have any idea how to implement the manifest, using below reference i implemented. but its not working. http://www.codemag.com/Article/1112051. My doubt: In local after implementing manifest…
Ram
  • 337
  • 5
  • 23
2
votes
0 answers

Can CDN distribution of assets be combined with HTML5 cache manifest in a Rails app?

In a Rails 3.2 app I'm using asset_sync to host my assets on S3, and Cloudfront to distribute these assets, accessible via 4 CNAME'd URLs. It has been a good way of increasing the app's performance and reducing load on the server. I'm now beginning…
Andy Harvey
  • 12,333
  • 17
  • 93
  • 185
2
votes
3 answers

how to create manifest if bundling and minification is used in ASP.NET MVC4

ASP.NET MVC4 application MVC4 buildit bundling and minification is used. Application should work also in offline. I tried to create manifest using code below but this does not work since v= parameters will change if source code is changed. How to…
2
votes
0 answers

How to access the version from the manifest appcache file through javascript

I'm building a web app with javascript, jquery, html5, php, & mysql. I'm using an appcache manifest file to cache the web page on the client machines. Since I'm keeping a version number in the appcache file already (to force the client files to…
Simpler
  • 1,317
  • 2
  • 16
  • 31
2
votes
0 answers

iphone offline application runs fine from safari but not from desktop

I made a webapp that uses a manifest file to work offline. The files are "text/cache-manifest" (due to a .htaccess file, HTML5 Boiler Plate) and in the console of Google Chrome I check all files are loaded properly. When i test my application…
José Antonio
  • 187
  • 2
  • 7
2
votes
1 answer

iOS7 homescreen app seems to not use AppCache manifest

I had an application that worked perfectly on iOS6. The process is : Login Check/update the cache manifest Read all the pages from the cache (in order to work offline, and it worked). but since the iOS7 update, the cache manifest update itself…
Pouki
  • 1,654
  • 12
  • 18
2
votes
0 answers

Mobile Safari iOS cache limit - no prompt to increase local storage

I have seen a few articles on this and a couple of stackoverflow questions max-size-ipad-iphone-offline-application-cache and mobile-safari-5mb-html5-application-cache-limit/10195265#10195265 Nothing I try will prompt me to increase the 5MB cache…
user2681625
  • 131
  • 3
  • 18
2
votes
1 answer

How would HTML5 offline manifest/functionality work with ASP.NET MVC 4?

Ok, I'm building a PoC for a mobile application that needs to have offline capabilities, and I have several questions about whether I'm designing the application correctly and also what behavior I will get from the cache manifest. This question is…
GR7
  • 5,083
  • 8
  • 48
  • 66
2
votes
0 answers

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 savedInstanceState) { super.onCreate(savedInstanceState); …
karthick
  • 11,998
  • 6
  • 56
  • 88
2
votes
3 answers

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 network logs with firebug, I see an OPTIONS request…
Thomas
  • 315
  • 3
  • 10
2
votes
1 answer

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 work offline (cache.manifest), and for some…
taijaCG
  • 46
  • 3