I've faced the same situation, and eventually found that it's Font-Awesome's issue on IE when cache is disabled (i.e. HTTP header with: 'Pragma: No-cache' and 'Cache-control: No-cache').
Reference: https://stackoverflow.com/a/33508291/4684232
Font-Awesome needs caching on IE, so the solution in my case is DON'T block the cache for font files requests (i.e. Request.Path.EndsWith([font file extensions])
Under folder Umbraco\assets\fonts, you'll find the extensions you need to escape are ".eot", ".svg", ".tff", ".woff", ".woff2"
Missing icons in Internet Explorer v11
Hi all, maybe anyone had the same issue with Umbraco(v7.9.2) back office in Internet Explorer(v11). All icons missing inside back office.
Hi Oleksandr,
welcome to the Umbraco community!
Do you have errors in the error console? What if you tried another browser like Google Chrome or Firefox?
Thanks!
/Michaël
Hi Michaël,
Here a console screenshot
In other browsers all going well.
I've faced the same situation, and eventually found that it's Font-Awesome's issue on IE when cache is disabled (i.e.
HTTP header with: 'Pragma: No-cache' and 'Cache-control: No-cache'
). Reference: https://stackoverflow.com/a/33508291/4684232Font-Awesome needs caching on IE, so the solution in my case is DON'T block the cache for font files requests (i.e.
Request.Path.EndsWith([font file extensions])
Under folder
Umbraco\assets\fonts
, you'll find the extensions you need to escape are".eot", ".svg", ".tff", ".woff", ".woff2"
Hope it helps!
is working on a reply...