I know there are many people having the same problem, but I tried to solve the problem by following the instrustions that are given in the forum and I still can't get it works.
I'm just trying to run a really simple cgi script, i.e print a line script.
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print <<END_HTML;
<html>
<head></head>
<body>Hello, World!</body>
</html>
END_HTML
and I keep getting a 404 error. I did put #!usr/bin/perl on my first line of code, I set the premission to 755.
If anyone can help I am really appreciate it. Thank You!
I'm just trying to run a really simple cgi script, i.e print a line script.
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print <<END_HTML;
<html>
<head></head>
<body>Hello, World!</body>
</html>
END_HTML
and I keep getting a 404 error. I did put #!usr/bin/perl on my first line of code, I set the premission to 755.
If anyone can help I am really appreciate it. Thank You!