This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

SUPPORT Q&A - Aras Installation

gunner_hk - Monday, November 19, 2012 3:47 AM:

Hello,

I did set up ARAS over a year ago.  Our company is now revisiting it and I am having slight difficulties in setting it up again.

I installed the latest version 9.3.0 onto Windows Server 2008 R2 with IIS installed.  I keep getting the error message:

THE CONFIGURATION SECTION CANNOT BE USED AS THIS PATH.  THIS HAPPENS WHEN THE SECTION IS LOCKED AT A PARENT LEVEL........

(OVERRIDEMODE="DENY", OR SET EXPLICITLY BY A LOCATION TAG WITH OVERRIDEMODE="DENY" OR LEGACY  ALLOWOVERRIDE="FALSE".

CONFIG FILE ARASINNOVATORINNOVATORWEB.CONFIG

<system.webserver>

   <handlers accesspolicy="read, script" />

<directorybrowse enabled="false">

 

This is the web.config actual file:

?xml version="1.0" encoding="UTF-8"?>

<configuration>

  <system.webServer>

    <handlers accessPolicy="Read, Script" />

    <directoryBrowse enabled="false" />

    <defaultDocument>

      <files>

                <clear />

                <add value="Default.aspx" />

                <add value="default.asp" />

                <add value="index.html" />

                <add value="index.htm" />

                <add value="default.html" />

                <add value="default.htm" />

      </files>

    </defaultDocument>

        <httpErrors>

            <clear />

        </httpErrors>

  </system.webServer>

</configuration>

 

Much appreciated for any help.

Thanks

Matthew

 



vasant - Tuesday, November 20, 2012 12:24 AM:

Hi Matthew,

you can write web.config as:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <handlers accessPolicy="Read, Script" />
    <directoryBrowse enabled="false" />
    <defaultDocument>
      <files>
        <clear />
        <add value="default.aspx" />
      </files>
    </defaultDocument>
  </system.webServer>
</configuration>

 

And also enable the defaultDocument Setting from IIS Server

refer following URL for above:

www.iis.net/.../defaultdocument

 

Hope it helps..

Thanks & Regards,

Vasant



gunner_hk - Tuesday, November 20, 2012 3:16 AM:

Vasant,

Thanks for replying back to me. I tried to above but no such luck.  I wished I had remembered where those notes were now from a year ago.  I do recall when I first installed ARAS I encountered the same problem.  I did get it working in the end but just can't remember what I did?

Do you have any more ideas?

Thanks

Matthew