Hello,
Trying a new install of Aras 10.0 and am running into some issues. Server: Windows 2012, IIS8, .NET Framework 4.5, .NET Framework 3.5.
Install proceeds without issue but when trying to access the website the first time I received this error:
HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data for the page is invalid.
Detailed Error Information:
Module | IIS Web Core |
Notification | BeginRequest |
Handler | Not yet determined |
Error Code | 0x80070021 |
Config Error | This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault="Deny"), or set explicitly by a location tag with overrideMode="Deny" or the legacy allowOverride="false". |
Config File | \\?\C:\Program Files (x86)\Aras\Innovator\Innovator\web.config |
Requested URL | http://localhost:80/InnovatorServer/ |
Physical Path | C:\Program Files (x86)\Aras\Innovator\Innovator\ |
Logon Method | Not yet determined |
Logon User | Not yet determined |
| | |
In my research I found that I needed to allow handler overrides at the default web site which I did by modifying C:\Windows\System32\inetsrv\config\applicationHost.config to change the ‘deny’ settings to ‘allow’.
<sectionGroup name="system.webServer">
<section name="handlers" overrideModeDefault="Deny" />
<section name="modules" allowDefinition="MachineToApplication" overrideModeDefault="Deny" />
Now I’m receiving this error:
HTTP Error 404.3 - Not Found
The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.
Can anyone point me in the direction of a solution?
Thanks!
Michael