I am trying to create an HTML5 application cache for a very large (about 2 gigabytes) web application to be used internally on a Windows 8 Professional and IE10 tablet. Something is causing the caching process to fail, but the only debugging information I can find is the F12 console, which simply says βFatal Errorβ AppCache.
I made an error handler and tried to debug:
if (window.applicationCache) { var oAppCache = window.applicationCache; oAppCache.onerror = function(e) { alert(e);
However, e does not contain useful information when viewing using the debugger.
According to the web server logs, the last file requested before the error is JPEG, like many others. Where should I start looking for clues about what causes the error? The cache page works fine in Firefox.
debugging internet-explorer-10 html5-appcache
Kaivosukeltaja
source share