- Open the httpd.conf file in the conf folder of EzUGCC. Typically c:\program files\ezugcc\conf\httpd.conf
- Towards the bottom of the file; find the line: "<Directory "C:\Program Files\EzUGCC\www">" (your path may be different--but will end with www).
- Add the following text under the above line: AspNet On
It should look somewhat similar to the code below. Save your changes and restart the web server. The menu should now work.
- Code: Select all
<Directory "C:\Program Files\EzUGCC\www">
AspNet On
Options FollowSymlinks ExecCGI
Order allow,deny
Allow from all
DirectoryIndex Default.aspx index.htm index.aspx
</Directory>
