Hello all... I am having some problems getting cgi script's to execute on my e-smith server. First off, I am new to linux and e-smith but so far I have had an excellent experience with it all and thanks to everyone who writes HOWTO's and produces modules.
Now to the problem: I am receiving an "Internal Server Error" when I try to execute a test cgi (perl based) script. {view script below} I copied the cgitest.pl and cgitest.cgi scripts to the proper ibay's cgi-bin. I have chmod 'ed the files to 755 and then to 777 and neither are working. I transferred the file through e-smith's samba share so I don't think there is a problem with binary vs. ascii transfer.
The e-smith server is a standard and the only changes I have made to the system include .htaccess, mp3 jukebox, awstats, and disk mirroring. Currently everything is working great except for my cgi files.
If someone knows the problem or has any suggestions on what I should do, please adivse. Since I am knew to linux, if I need to excute any commands, please include those in your reply. Thanks in advance.
{here is the test script I am trying to run}
#!/usr/bin/perl
# Create an HTML page to display a message.
print "Content-type: text/html\n\n";
print "
Test";
print "";
print "";
print "TEST";
print "
";
print "
";
print "Hooray! It works!";
print "
";
print "";
print "";