html5 - IE11 throws AppCache Fatal error -
i humbled now. have been trying application cached in ie11 browser no luck.
i thankful if 1 tell me whats going wrong. did lot of reading whole day , couldn't find causing issue.
issue:
my offline application gets cached correctly based on manifest file in chrome , firefox. app doesn't cached in ie11 (which ie have). have no clue going wrong.
my code:
manifest.appcache
cache manifest #v1.0 cache: /formsoffline/index.html network: *
index.html
<!doctype html> <html ng-app="app" lang="en" manifest="manifest.appcache"> <head> <meta http-equiv="x-ua-compatible" content="ie=edge" /> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>forms</title> <link href="/formscommon/vendor/css/all.css" rel="stylesheet" /> <link href="/formscommon/assets/css/main.css" rel="stylesheet" /> </head> <body> </body> </html>
when run index.html page, following erro in ie11 console:
creating appcache manifest: 'http://127.0.0.1:7101/formsoffline/manifest.appcache'. appcache fatal error
am building offline application using html5, angularjs , server oracle weblogic.
Comments
Post a Comment