I am trying to move a website from one server to another server but pointing to the same external database server. The error appeared was:
HTTP/1.1 New Application Failed
It was working in the previous server, and only in certain pages are working.
ASP is installed on the server role and tried edit the applicationHost.config to section name=”asp” overrideModeDefault=”Allow” but they didn't solve the issue. The application is the Default Web Site at the root directory in c:\inetpub\wwwroot\
Here's in web.config:
<system.webServer>
<defaultDocument>
<files> <clear />
<add value="index.html" />
<add value="Default.htm" />
<add value="Default.asp" />
<add value="index.htm" />
<add value="iisstart.htm" />
<add value="default.aspx" />
<add value="index.php" />
</files>
</defaultDocument>
<httpErrors errorMode="DetailedLocalOnly" />
</system.webServer>
Thank you.
<asp>
node from your web.config or even remove the whole web.config to see whether that makes a difference. – Peter HahndorfC:\Windows\System32\inetsrv\config\applicationHost.config
for any<asp...
nodes. By default there should only be one<cache>
node. Also check the Windows application eventlog. – Peter Hahndorf