[Owncloud] [solved] Oddities using IIS7.X
Jerry Evans
jerry at NovaDSP.com
Tue Oct 30 11:49:18 UTC 2012
Hello
I've finally tracked down the problem with SVG icons being rendered
oddly when served by IIS. The SVG mime type was not registered with IIS.
The fix is to either
use IIS admin -> MIME types: add .SVG with a mimetype of image/svg+xml
Or add an entry to the relevant web.config
|<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
</staticContent>
</system.webServer>
</configuration>|
Not sure if there is a Wiki to which this might be added...
Best regards
Jerry.
More information about the Owncloud
mailing list