The way that it would show up, if I remember right is:
http://localhost/~owen/cgi-bin/test.pl
Try that.
You also need to remember to go to your httpd.conf and make sure that the options allows the execution of scripts in that directory and that it is allowed to override the default (which doesn't allow it). I think you are looking for the following: (I had to hack this out of my conf, (to hide my info obviously), you might need to play with it a little...)
#
<Directory /home/*/public_html>
# AllowOverride FileInfo AuthConfig Limit
Options Indexes ExecCGI
<Limit GET POST OPTIONS PROPFIND>
Order Deny,Allow
Allow from 127.0.0.1
Deny from all
</Limit>
<LimitExcept GET POST OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
Nebulus




Reply With Quote