Overview
To configure the Web Reporting System, you need to enable .cgi file name extensions. You also need to configure QoS Manager in the document root.
Solution Steps
To edit the Apache httpd.conf file:
1. Find the AddHandler cgi-script property that enables .cgi file name extensions. Typically the line is commented out:
#AddHandler cgi-script .cgi
2. Uncomment the line:
AddHandler cgi-script .cgi
3. Add entries to enable CGI execution in the /Firehunter/fhreport directory and read-only access to the /Firehunter/fhreport/data directory. The following example shows directives for a Web DocumentRoot () of /opt/httpd/share/html
# Firehunter Directories
#
# Configure fhreport CGI directory
#
Options Indexes Includes ExecCGI FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
#
# Configure fhreport data directory
#
Options Indexes Includes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
4. Restart the Web server to load the updated configuration.
Additional Info