Register MIME type for preview files in IIS
Artikel
KBTE000808
| Betrifft:
|
List & Label 8, List & Label 9, List & Label 10, List & Label 11, List & Label 12, List & Label 13, List & Label 14, List & Label 15, List & Label 16, List & Label 17, List & Label 18 |
| Kategorie:
|
Preview |
| Überarbeitet:
|
22.10.2012 |
Due to security reasons IIS6 and IIS7 block requests for unknown MIME types. To provide access to List & Label preview files you need to register the extension .ll as a MIME type in IIS.
In IIS6 you can enter the extension in the properties of either the web server or the web site. Open the Internet Information Services Manager (Control Panel > Administration) and look for the "MIME Types" property on the tab HTTP-Header in the section "MIME Types". We recommend you to use the type application/ll for the extension .ll
Using IIS7 in the classic mode you can do the same for either the server or the site in the section IIS in the feature pane. Using the integrated mode gives you the possibility to register the MIME type already in your web.config with following snippet
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".ll" mimeType="application/ll" />
</staticContent>
</system.webServer>
</configuration>
If you are using the designer plugin you have to set the following extensions too:
In IIS6 or IIS7 classic mode you have to set the global wildcard application. Or you can make a setting for every single extension. Also uncheck the property "verify that the file exists"!
Links:
http://blogs.iis.net/bills/arc...iis7-web-config.aspx
Hinweis: combit macht keine Angaben zu einer bestimmten Eignung
obiger Informationen. Irrtümer und Fehler bleiben ausdrücklich vorbehalten, die
Angaben erfolgen ohne Gewähr. Die Angaben stellen nur Beschreibungen dar und
enthalten keine Garantie der Beschaffenheit der Produkte. Die Informationen
können z.T. auch ein Versuch sein, Ihnen bei einer Aufgabenstellung zu helfen,
selbst wenn das Produkt eigentlich nicht für diesen speziellen Zweck vorgesehen
wurde.
Ihre Artikel-Bewertung:
Kommentar:
|