How to debugg IE11 APPCACHE

╄→尐↘猪︶ㄣ 提交于 2019-12-01 18:50:18

Add

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

To any data php returns. The default Cache-Control header from php contains "no-store" which will mess up the appCache in both IE 11 and Firefox.

IE 11 does not work with appcache if some file in the manifest (or the index itself) works with PHP SESSION

You need to remove from every PHP any of this atributtes:

session_start

cache no expire no store

make sure MimeType is correct

Add

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

after session_start()

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!