What's up with Perl?

Status
Not open for further replies.

oleg24

New Member
Messages
3
Reaction score
0
Points
0
I've uploaded a simple Perl script, which is giving me 403:

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:

oleg24

New Member
Messages
3
Reaction score
0
Points
0
D'oh! I must've misread the chart in the past--I was convinced that it was supported! :eek:

Thanks! :)
 

stpvoice

Community Support Rep
Community Support
Messages
5,987
Reaction score
212
Points
63
Hello,

I don't think we've supported perl on free since I've been here, which is about 2+ years now.
 
Status
Not open for further replies.
Top