Joggal
Joggal

Reputation: 61

Internal Server Error 500.19 Plesk / IIS

I upgraded Plesk 12.0 to 12.5 today and got a hard error that causes my website to be unreachable.

If I open the website on the server i get the following error message: enter image description here

It says that it that a second entry of the type "mimeType" with the key attribute .woff cant be added.

Can someone help me with that error?

UPDATE I deleted the entries in the file which called the error and now it is working again. What i am asking myself: was it the right way to delete this error? Don't want to have any further errors in the future because of that!

Upvotes: 1

Views: 665

Answers (1)

George Paoli
George Paoli

Reputation: 2605

Change your config like this:

<system.webServer>
    <staticContent>
      <remove fileExtension=".woff" />
      <remove fileExtension=".woff2" />
      <remove fileExtension=".eot" />
      <remove fileExtension=".ttf" />
      <remove fileExtension=".svg" />
      <mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" />
      <mimeMap fileExtension=".ttf" mimeType="application/font-sfnt" />
      <mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
      <mimeMap fileExtension=".woff" mimeType="application/font-woff" />
      <mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />
    </staticContent>
</system.webServer>

Upvotes: 1

Related Questions