Ok ppl for everyone who needs help with Apaches httpd.conf
here is what you may need to do
httpd.conf
Find this line in the file:
#ServerName new.host.name (232)
Change the line to: ServerName localhost
Uncomment the following lines by removing the # if present:
#ScriptAlias /cgi-bin/ "C:/Apache/cgi-bin/" (458)
#AddHandler cgi-script .cgi (633)
#AddType text/html .shtml (638)
#AddHandler server-parsed .shtml (639)
Save the changes. You should actually read the comments for the lines you changed to understand why you did what you did. Your server should now be readly to run your Perl CGI scripts.
I hope this helps
Wheelie