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>