Developer forum

Forum » Dynamicweb 10 » Error installing DW10

Error installing DW10

Tomas Gomez
Reply

Hi,

When installing DW10(OctoberBeta), I get a HTTP 500.19 Error with a 0x8007000d HRESULT code. According to Microsoft, this problem occurs because the ApplicationHost.config or Web.config file contains a malformed or unidentified XML element. See more info at https://learn.microsoft.com/en-us/troubleshoot/developer/webapps/iis/health-diagnostic-performance/http-error-500-19-webpage

The content of web.config refers to ASP.NET. I installed ASP.NET Core Runtime 6.0 Hosting Bundle but the problem persists.

What else is need to install DW10? May I modify the web.config file or any other task?

Regards,
Tomas

PD: The content of web.config is:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <location path="." inheritInChildApplications="false">
    <system.webServer>
      <handlers>
        <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
      </handlers>
      <aspNetCore processPath="dotnet"
                  arguments=".\bin\Dynamicweb.CoreUI.Host.dll"
                  stdoutLogEnabled="false"
                  stdoutLogFile=".\logs\stdout"
                  hostingModel="inprocess" />
    </system.webServer>
  </location>
</configuration>


Replies

 
Tomas Gomez
Reply
This post has been marked as an answer

Hi again,

If somebody face the same issue, the problem was due to ASP.NET. I solved it reinstalling ASP.NET Core Runtime 6.0 Hosting Bundle.

Regards,
Tomas
 

Votes for this answer: 2
 
Marie Louise Veigert
Reply

This was my issue as well.
If anyone needs to do it as well just follow this: https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/iis/hosting-bundle?view=aspnetcore-7.0 

 

You must be logged in to post in the forum