[Owncloud] [Solved] Oddities when using IIS7.x
g4 at novadsp.com
g4 at novadsp.com
Tue Oct 30 12:14:42 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