in reply to Re^4: How to configure Apache for running perl scripts.
in thread How to configure Apache for running perl scripts.
And chmod 755 a.pl just to be sure. If it still gives the error, run the script from the command line (./a.pl) and paste the output... (We'll get there yet!)#!/usr/bin/perl use strict; use warnings; use CGI qw(:all); print header; print "hello!";
|
|---|