-
Notifications
You must be signed in to change notification settings - Fork 12.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IE and Cache-Control #6454
Comments
@chandon feel free to edit that wiki and point to this issue, thanks! leaving this open |
Done in the "I'm hosting fonts on my server and icons don't show up" section |
Perfect, thanks! 👍 |
Removing global "Pragma: no-cache" on HTTP server header fixes this issue. |
@hailhash
|
setting [Cache-Control:'no-store'] worked for me. |
@Rahul-Bisht how and where did you set [Cache-control:'no-store'] to FA work in IE, can you please provide further detail. I am getting same issue on IE 11. |
@haripalpatil cache control is a parameter to set on the webserver and/or response headers and it is not a Font Awesome setting. You should remove Ref: |
@tagliala Thanks for your quick reply, the response I am getting from server does not contain either of these value in response header (i.e. Cache-controlL no-store as well as Pragma: no-cache) so no need to remove, still IE 11 on my machine not able to download the font file. If I use Charles to debug the font awesome GET call, I am getting error as "Client closed connection before receiving entire response" Also while debugging Charles I found out that if I remove following from response header, I am able to download font file. Also all this work fine if I user latest IE version. |
We recently had this issue serving Font Awesome font files from our Rails application. The confusion was that we weren't passing To summarize - this issue is caused by these two conditions:
We fixed this by adding the following to our Rack::CORS config:
@haripalpatil this might be of use to you. |
@ahadik thanks for sharing. Feel free to edit our wiki at https://github.com/FortAwesome/Font-Awesome/wiki/Troubleshooting#im-hosting-fonts-on-my-server-and-icons-dont-show-up |
I had the same problem ,resolve by remove |
I had some issue with FA not displayed on IE11
After investigating, it was because my web server forced "no-store" in Cache-control header (perhaps avoiding some .eot #iefix reloading ?)
Perhaps it should be noticed here : https://github.com/FortAwesome/Font-Awesome/wiki/Troubleshooting
The text was updated successfully, but these errors were encountered: