Reputation: 11
We installed TFS 2017 update 3
and we are having issues when displaying the icons in the web application. We are having issues with the "Files
" section inside "Code
" for each one of our projects, the contents of the files aren't displaying. In the browser console
, we can see these issues. Our Bowtie.woff
file has 39KB
.
CSS3111: @font-face encountered unknown error. bowtie.eot
CSS3111: @font-face encountered unknown error. bowtie.woff
CSS3111: @font-face encountered unknown error. fabricmdl2icons.woff
CSS3114: @font-face failed OpenType embedding permission check. Permission must be Installable. fabricmdl2icons.ttf
CSS3111: @font-face encountered unknown error. fabricmdl2icons.woff
CSS3114: @font-face failed OpenType embedding permission check. Permission must be Installable. fabricmdl2icons.ttf
The request are showing errors:
_content/Fonts/Icons/bowtie.eot?iefix 500 internal server error
_content/Fonts/Icons/bowtie.woff 500 internal server error
_content/Fonts/Icons/bowtie.eot?iefix 500 internal server error
/_scripts/TFS/min/VersionControl/scenarios/Shared/HookSplitterResizeEventToNativeEvent.js 500 internal server error
_content/Extensions/CodeEditor/0.8.3/vs/Editor/editor.main.css 500 internal server error
_scripts/Extensions/min/TFS.extension.js 500 internal server error
Upvotes: 1
Views: 591
Reputation: 30422
I checked the Bowtie.woff
file on my side, it's also 39KB
. Seems it's not caused by the file.
Seems it's related to the privilege of the service account.
If you are seeing HTTP 500 when servicing static content, most likely your service account does not have "Impersonate a client after authentication" privilege.
Refer to Vladimir's answer in this thread : TFS 2017 Missing Icons
To check/add permission you can do the following:
Another possibility is the web.config
file issue which under below path:
C:\Program Files\Microsoft Team Foundation Server 15.0\Application Tier\Web Services\_static\tfs\Dev15.M125.1\_content\Fonts
Refer to this thred for details : TFS 2015 Update 2 Missing Icons
Upvotes: 2