Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Font Awesome error: downloadable font: rejected by sanitizer

downloadable font: rejected by sanitizer (font-family: "FontAwesome" style:normal weight:normal stretch:normal src index:1) source: http://192.168.1.254/theme/font-awesome/fonts/fontawesome-webfont.woff2?v=4.6.3 http://192.168.1.254/theme/font-awesome/css/font-awesome.min.css Line 4

I was keep getting above error. and i tried lots of stuff found on the internet. (hosting the fonts on own server)

  • CORS issue
  • MIME-type header config in web server

Other combinations of HTTP headers and MIME-types everything that can resolve the issue but nothing solved it.

like image 423
Amit Shah Avatar asked May 25 '16 06:05

Amit Shah


3 Answers

Remove the ?v=4.6.3 and remaining tail from this block (font-awesome.css / font-awesome.min.css).

@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.6.3');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'), 
  url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'),
  url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'),
  url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'), 
  url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');
  font-weight: normal;

Updated to:

@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot');
  src: url('../fonts/fontawesome-webfont.eot') format('embedded-opentype'), 
  url('../fonts/fontawesome-webfont.woff2') format('woff2'), 
  url('../fonts/fontawesome-webfont.woff') format('woff'), 
  url('../fonts/fontawesome-webfont.ttf') format('truetype'), 
  url('../fonts/fontawesome-webfont.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
like image 162
Amit Shah Avatar answered Nov 04 '22 13:11

Amit Shah


Catched !! Solved with replacing

font-family: 'fontawesome-webfont';

instead of

font-family: 'FontAwesome';

I works for me.

like image 3
Pino Piras Avatar answered Nov 04 '22 14:11

Pino Piras


If you are getting the error fontawesome-webfont.woff2?v=4.6.3 not found but you definitely know you have the file, here is how to fix it in IIS:

You need to add the mime type in the config file for woff2.

<system.webServer>
<staticContent>
<remove fileExtension=".woff2" />
<mimeMap fileExtension=".woff2" mimeType="font/woff2" />
</staticContent>
</system.webServer>
like image 2
Richard Kazimoto Avatar answered Nov 04 '22 13:11

Richard Kazimoto