Hi
I'm using Apache1.3.14 on solaris.
I'm trying to allow each of my user-directories to have a cgi-bin directory.
So I placed the cgi-bin directory underneath the public_html directory. I
added the following code to my httpd.conf
AddHandler cgi-script .cgi
<Directory /home/*/public_html/cgi-bin>
Options ExecCGI
SetHandler cgi-script
</Directory>
I've saved the cgi-file under ~user/public_html/cgi-bin/<cgi-filename>
When I try running it from the browser, I see the source code, rather than
seeing the cgi script being executed.
Whats possibly wrong with the configuration?
Thanks
Akshay