JMon
JMon

Reputation: 3447

HTTP Error 500.19 - Internal Server Error - what is the cause?

I have created an Angular2/.NETCore application in Visual Studio, which when debugged works fine. I published this on my local IIS, and this also is running fine. However when I moved everything to a remote server, I got the following error:-

HTTP Error 500.19 - Internal Server Error

Detailed Error Information:
Module     IIS Web Core
Notification       Unknown
Handler    Not yet determined
Error Code     0x8007000d
Config Error       

I checked that I have the correct permissions on the remote IIS, however I cannot understand why I am getting this error.

I already tried the following link

but no luck so far.

Anyone has any idea what the problem might be?

Thanks for your help and time.

Upvotes: 0

Views: 2924

Answers (1)

Sanket
Sanket

Reputation: 20047

Install the .NET Core Windows Server Hosting bundle on the hosting system. The bundle will install the .NET Core Runtime, .NET Core Library, and the ASP.NET Core Module.

For more information refer this link.

Upvotes: 1

Related Questions