Problems with asp

1. How do I configure Apache-ASP?

Make sure the module is installed:

rpm -q perl-Apache-ASP

If it is installed you should get an affirmative response. A null response means that it is not installed.

In /etc/httpd/conf/httpd.conf find the following lines and uncomment them:

# Apache ASP
# You need not only mod_perl to be installed, but also # perl-Apache-ASP and related perl modules. When this is # done, you may uncomment the following and customize the # ASP configuration file.
#<IfModule mod_perl.c>
# Include /etc/httpd/conf/asp.conf
#</IfModule>

-HUP the httpd daemon and Apache-ASP will now server pages out of the /home/httpd/asp directory.

Note that you will also need to have the mod_perl package installed in order to use Apache-ASP.

2. Is there a separate configuration file for Apache-ASP?

/etc/httpd/conf/asp.conf is what you're looking for (look closely at the answer to question #1...).