Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Still not working' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Still not working
Authored by: mebigrock on Jul 12, '01 11:12:43AM

perl scripts need to be made executable for apache to run them. a command like the one below should work.

chmod a+rx filename.pl



[ Reply to This | # ]
Still not working
Authored by: Crusty on Jul 12, '01 09:15:03PM
I forgot to mention that I was testing a VERY basic Perl script:
#!/usr/bin/perl
print "Content-type: text/htmlrnrn";
print "Hello, World.";
There are backslashes before each "r" and "n", but they don't show up here. And I still get the errors I mentioned in my earlier post a few minutes ago. I know that's where Perl is on my computer too.

[ Reply to This | # ]