I'm trying to change from a Win2008 server to a Win2012. I did a test install of Snitz on the new Win2012 server and it works perfectly after a few permission and web.config adjustments.
Now I tried to upload and configure my working site and I can't get past the setup page at
http://208.79.209.42/plesk-site-preview/www.orientbeachforum.com/208.79.209.42/setup.asp
When I click on continue I end up with an error.
If I change the web.config file to show errors, it stops the set.asp page from working.
Here's my web.config file:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<httpErrors errorMode="Detailed" existingResponse="PassThrough"></httpErrors>
<directoryBrowse enabled="false" />
<defaultDocument>
<files>
<clear />
<add value="default.aspx" />
<add value="index.php" />
<add value="Default.htm" />
<add value="Default.asp" />
<add value="index.htm" />
<add value="index.html" />
<add value="iisstart.htm" />
</files>
</defaultDocument>
<httpProtocol>
<customHeaders>
<clear />
<add name="X-Powered-By" value="ASP.NET" />
</customHeaders>
</httpProtocol>
</system.webServer>
<system.web>
The site is on a shared server using Plesk.
I know it's probably something really simple, but I've tried numerous fixes but no love.
TIA
Kerry