0

I am trying to write the manifest file but I am having weird problem in FF5, its caching all despite saying to don't do so. My manifest file looks like:

CACHE MANIFEST

NETWORK:
*

any ideas?

µBio
  • 10,668
  • 6
  • 38
  • 56
Marcin
  • 5,469
  • 15
  • 55
  • 69

3 Answers3

1

http://www.html5rocks.com/en/tutorials/appcache/beginner/ this says if you reference the manifest file in html files as manifest attributes then it will be cached even if its not listed in manifest file.

Ashok
  • 11
  • 1
0

It seems you don't have anything set to cache, why would you need a cache manifest file if this is the case? If you are trying to cache some things I would try properly defining them under CACHE: and see if it then cache's the appropriate assets.

cjgammon
  • 41
  • 6
0

I did a presentation about offline and local storage not long ago.

Video available here: http://www.youtube.com/watch?v=AWCk6FZMpcU

It's a bit complicated. I had to read Dive Into HTML5 multiple times and then experiment a lot to get things working.

I have an example PHP manifest "build" script here: https://github.com/JasonHanley/note5/blob/master/build.php

Jason Hanley
  • 304
  • 2
  • 14