How to remove error about glyphicons-halflings-regular.woff2 not found

后端 未结 6 1055
夕颜
夕颜 2020-12-12 18:50

ASP.NET MVC4 Bootstrap 3 application is running from Microsoft Visual Studio Express 2013 for Web IDE.

Chrome console shows always error

http://local         


        
相关标签:
6条回答
  • 2020-12-12 19:07

    For me, the problem was twofold: First, the version of IIS I was dealing with didn't know about the .woff2 MIME type, only about .woff. I fixed that using IIS Manager at the server level, not at the web app level, so the setting wouldn't get overridden with each new app deployment. (Under IIS Manager, I went to MIME types, and added the missing .woff2, then updated .woff.)

    Second, and more importantly, I was bundling bootstrap.css along with some other files as "~/bundles/css/site". Meanwhile, my font files were in "~/fonts". bootstrap.css looks for the glyphicon fonts in "../fonts", which translated to "~/bundles/fonts" -- wrong path.

    In other words, my bundle path was one directory too deep. I renamed it to "~/bundles/siteCss", and updated all the references to it that I found in my project. Now bootstrap looked in "~/fonts" for the glyphicon files, which worked. Problem solved.

    Before I fixed the second problem above, none of the glyphicon font files were loading. The symptom was that all instances of glyphicon glyphs in the project just showed an empty box. However, this symptom only occurred in the deployed versions of the web app, not on my dev machine. I'm still not sure why that was the case.

    0 讨论(0)
  • 2020-12-12 19:17

    I tried all the suggestions above, but my actual issue was that my application was looking for the /font folder and its contents (.woff etc) in app/fonts, but my /fonts folder was on the same level as /app. I moved /fonts under /app, and it works fine now. I hope this helps someone else roaming the web for an answer.

    0 讨论(0)
  • 2020-12-12 19:21

    In my case, I've just downloaded the missing file directly from here: https://gitlab.com/mailman/mailman-website/raw/a97d6b4c5b29594004e3855f1ab1222449d0c211/content/fonts/glyphicons-halflings-regular.woff2

    0 讨论(0)
  • 2020-12-12 19:26

    This problem happens because IIS does not find the actual location of woff2 file mime types. Set URL of font-face properly, also keep font-family as glyphicons-halflings-regular in your CSS file as shown below.

    @font-face {
    font-family: 'glyphicons-halflings-regular'; 
    src: url('../../../fonts/glyphicons-halflings-regular.woff2') format('woff2');}
    
    0 讨论(0)
  • 2020-12-12 19:31

    This problem happens because IIS does not know about woff and woff2 file mime types.

    Solution 1:

    Add these lines in your web.config project:

     <system.webServer>
      ...
      </modules>
        <staticContent>
          <remove fileExtension=".woff" />
          <mimeMap fileExtension=".woff" mimeType="application/font-woff" />
          <remove fileExtension=".woff2" />
          <mimeMap fileExtension=".woff2" mimeType="font/woff2" />
        </staticContent>
    

    Solution 2:

    On IIS project page:

    Step 1: Go to your project IIS home page and double click on MIME Types button:

    Step 2: Click on Add button from Actions menu:

    Step 3: In the middle of the screen appears a window and in this window you need to add the two lines from solution 1:

    0 讨论(0)
  • 2020-12-12 19:32

    Add this one to your html if you only have access to the html:

    <link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css" rel="stylesheet">
    
    0 讨论(0)
提交回复
热议问题