I have some perl pages, but whenever I try to access them from an internet browser (like if I went to mindos4.x10.mx/HelloWorld.pl) I get an internal server error telling me about a misconfiguration, or something. What can I do to fix this?
I do have correct syntax:
I do have correct syntax:
Code:
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print<<HTML
<html>
<body>
Hello, World!
</body>
</html>
HTML;