How to debug IE11 APPCACHE

I have an HTML5 page that works with CHROME and SAFARI but it doesn’t work with Internet Explorer 11, my cache manifest is valid according to http://manifest-validator.com/ , and I'm very upset ...

here is the AppCache manifest paste:

mime type recognized

#version 1.1 12-20-2013
CACHE:

#images
imgs/enc1.png
imgs/logo-izq.png
#internal HTML documents
index.php
#style sheets
css/css.css
css/jquery-ui-1.10.3.custom.min.css
#style sheet images
css/images/animated-overlay.gif
css/images/ui-bg_flat_0_aaaaaa_40x100.png
css/images/ui-bg_flat_75_ffffff_40x100.png
css/images/ui-bg_glass_55_fbf9ee_1x400.png
css/images/ui-bg_glass_65_ffffff_1x400.png
css/images/ui-bg_glass_75_dadada_1x400.png
css/images/ui-bg_glass_75_e6e6e6_1x400.png
css/images/ui-bg_glass_95_fef1ec_1x400.png
css/images/ui-bg_highlight-soft_75_cccccc_1x100.png
css/images/ui-icons_222222_256x240.png
css/images/ui-icons_2e83ff_256x240.png
css/images/ui-icons_454545_256x240.png
css/images/ui-icons_888888_256x240.png
css/images/ui-icons_cd0a0a_256x240.png
#javascript files
js/jquery.min.js
js/offline.js
js/jquery-ui.min.js
#FORMULARIOS OFFLINE
1/4-offline.php
1/5-offline.php
1/6-offline.php
2/4-offline.php
2/5-offline.php
2/6-offline.php
3/4-offline.php
3/5-offline.php
3/6-offline.php
NETWORK:
*
FALLBACK:
js/online.js js/offline.js
online.php offline.php
/ offline_plantilla.php

and the devel site is:

The IE11 error is this: Something like: the resource does not exist on the server.

Something like: The resource doesn't exist on server.

+4
source share
3 answers

Add

header("Cache-Control: no-cache, must-revalidate");

For any data, php is returned. The default Cache-Control header from php contains a "no-store" that will corrupt appCache in both IE 11 and Firefox.

+5
source

IE 11 appcache, - ( ) PHP SESSION

PHP :

session_start

cache no expire no store

, MimeType

+1

Add

header("Cache-Control: no-cache, must-revalidate");

after session_start ()

+1
source

All Articles