Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • navneet kaur 11 posts 103 karma points
    Dec 09, 2016 @ 05:47
    navneet kaur
    0

    MIME Type Issue In IE

    I am getting error

    @font-face failed OpenType embedding permission check. Permission must be Installable. in IE.

    For resolving this I am adding the MIME type in web config. But the issue is still there.Its working fine in other browser(Chrome,Mozilla).Using Umbraco version (Umbraco 7.4.3).

    <!-- Adobe AIR mime type -->
        <staticContent>
          <remove fileExtension=".air" />
          <mimeMap fileExtension=".air" mimeType="application/vnd.adobe.air-application-installer-package+zip" />
          <remove fileExtension=".svg" />
          <mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
          <remove fileExtension=".woff" />
          <mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
          <remove fileExtension=".otf" />
          <mimeMap fileExtension=".otf" mimeType="application/x-font-otf" />
          <remove fileExtension=".less" />
          <mimeMap fileExtension=".less" mimeType="text/css" />
          <remove fileExtension=".mp4" />
          <mimeMap fileExtension=".mp4" mimeType="video/mp4" />
        </staticContent>![enter image description here][1]
    
  • John Lee 6 posts 116 karma points
    Dec 09, 2016 @ 10:03
  • navneet kaur 11 posts 103 karma points
    Dec 09, 2016 @ 10:36
    navneet kaur
    0

    Thanks John Lee. I resolved the issue by add #iefix after the font file name.

     src: url('../ProximaNova-Regular.eot?#iefix') format('embedded-opentype');
    
  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies