C
Cyde Weys
BTW, as of now, index.pl is this:
#!/usr/bin/perl
print("Test\n");
Thanks everyone for all the help. Reading the error_log for apache was
indeed the key to solving this problem. I got an error message basically
saying, "Option ExecCGI isn't set in this directory." Apparently, the
/var/www/html directory was set to allow override none, so even though I
had blanket Options ExecCGI that wasn't being allowed. So in the
Directory definition for /var/www/html I included Options +ExecCGI ... and
immediately got another error (internal server configuration error).
The logs said the problem was due to bad headers. Well, DUH, I know how
to use CGI.pm. So I fixed up my .pl file and everything works now! If
you want to see my (very pathetic) website, you can check it out here:
http://terpy.student.umd.edu
Once again, thanks a lot to all you helpful guys out there.