Hey everyone, I have yet another problem, I'm sure it's stupid as well hahah but you all seem to be so smart! I can't seem to get the ScriptAlias to work. Here is my httpd.conf part
Code:
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
ScriptAlias /cgi-bin/ "/home/lqidskin/html/cgi-bin/"
#
# "/var/www/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "/home/lqidskin/html/cgi-bin/">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
Now I changed the default path as I did for the DocumentRoot. I also have confirmed my cgi-bin is 755, /home/lqidskin/html being my default path in the DocumentRoot variable. Perl works from the command line (I'm testing a hello.cgi) It is also 755
I also tried to change this
Code:
# AddHandler allows you to map certain file extensions to "handlers":
# actions unrelated to filetype. These can be either built into the server
# or added with the Action directive (see below)
#
# To use CGI scripts outside of ScriptAliased directories:
# (You will also need to add "ExecCGI" to the "Options" directive.)
#
AddHandler cgi-script .cgi .pl
#
# For files that include their own HTTP headers:
#
#AddHandler send-as-is asis
I don't understand the (you will need to add ExeCGI to the Options directive...) so I'm sure it's not complete as I can't run the script from firefox. Can any one of you Apache gurus lend a newbie a hand? Perciate it!