I've uploaded a simple Perl script, which is giving me 403:
I made sure that the script http://x.olego.com/footer.pl is chmod'ed to 0755, but that didn't help, either. Do I need to explicitly enable something in .htaccess?
Code:
#!/usr/bin/perl -w
use strict;
use CGI;
my $query = new CGI;
print $query->header("text/html");
print <<"END";
Hello!
END
I made sure that the script http://x.olego.com/footer.pl is chmod'ed to 0755, but that didn't help, either. Do I need to explicitly enable something in .htaccess?
Last edited: