I have an html5 appcache running on a website, it works fine in Safari, Opera and Chrome but it fails to work on Firefox.
I have the following in my code:
I had a similar problem.
While offline, a simple change in the URL could be a problem
http://localhost:8080/app
doesn't work on Firefox/IEhttp://localhost:8080/app/
works on Firefox/IEBoth of them work in Chrome
about:cache
- Firefoxchrome://appcache-internals/
- ChromePlease fill in if someone knows what is it for IE.
check if the no-cache/no-store headers are set
I face the same problem too; this header is fix for me.
Content-Type: text/cache-manifest
In Firefox Preferences -> Advanced -> Network, in the "The following websites have stored data for offline use:" list, do you see your website? If so, try clearing your website from the list and then reloading your website.
Look if the Server sets no-cache/no-store headers for the generated files. Firefox will then ignore the manifest in contrary to the other browsers.
Earl's answer above worked for me in combination with turning FireBug off.
In Firefox Preferences -> Advanced -> Network, in the "The following websites have stored data for offline use:" list, do you see your website? If so, try clearing your website from the list and then reloading your website.