I've uploaded a simple Perl script, which is giving me 403:
#!/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...