Hello everyone,
I've written a .cgi file:
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "<H1>Hello World</H1>\n";
I've put it in the cgi-bin folder, and chmoded both the folder and the file with 777.
I try to access it using www.domain.com/cgi-bin/test.cgi - and I get a Internal Server Error...
Any help would be appreciated... Dan.
I've written a .cgi file:
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "<H1>Hello World</H1>\n";
I've put it in the cgi-bin folder, and chmoded both the folder and the file with 777.
I try to access it using www.domain.com/cgi-bin/test.cgi - and I get a Internal Server Error...
Any help would be appreciated... Dan.
Comment