Page 1 of 1

Menu doesn't work with EzUGCC Upgrade to 1.34

Posted: Sun Jan 17, 2010 8:13 pm
by Masher
The new menu as part of the interface upgrade requires an entry to be added to the web servers configuration file to work properly. Follow the directions below to fix the menu on EzUGCC. Note that new installs of EzUGCC will not require this.
  • 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>