Hi.
I am having difficulty in getting some scripts to work in the cgi-bin of my ibays. I have set the ibays up to execute dynamic content such as php and the cgi-bin but the browser returns Internal Server Error 500 messages when I access the script.
The script is as follows (nothing too complex) -
#!/usr/local/bin/perl
# Alert! The web server is *NOT* processing the script if you can read this line.
print "Content-type: text/html\n\n";
print "Hello world from PERL $]\n";
print ".cgi scripts are mapped to Perl.";
Can anyone shed any light on where I am going wrong?...