Did I mention I was a beginner at this?
I am learning Perl5, and thought I'd try a test script. Well shock, I can't get the sucker to work. Simple, easy thing:
Code Sample:
#!/usr/local/bin/perl
#===============================
# Testing CGI script installation
# Copyright 1999, Emmie P. Lewis
# Created 07/24/99
#===============================
# This script is designed to test
# CGI script installation
#===============================
print "Content-type: text/plain", "\n\n";
print "Yippee! It works!";
|
|
I've put this in the cgi-bin directory in my root directory, right? i.e.:
/big/dom/xchainmailconnection/cgi-bin
And to access it, I try using the url:
http://www.chainmailconnection.com/test.cgi
But when I try that, I get a 404 error. I know the case is correct, and I chmod'ed it to 755. What am I doing wrong??

--Sara