Internal Server Error Messsage when running any CGI

Status
Not open for further replies.

rogerh

New Member
Messages
3
Reaction score
0
Points
0
I'm totally new to this site...so if I'm making a dumb mistake, let me know.

I can't get any .cgi scripts to run. I get the message:

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, support@x10hosting.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

For instance, here's a script I tried:

#! /usr/bin/perl
use strict ;
use CGI::Carp qw(fatalsToBrowser);
use warnings;
print "Content-type: text/html\n\n";
print "Hello, World...\n";

Things I have done:

- FTP'ed in ASCII mode
- Changed permission to 777
- Tried excuting script in root directory and also in cgi-bin directory
- Verified that #! was the very first characters in the file

Here's my .htaccess file which I have not changed:

# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
allow from all
</Limit>
AuthName cdmd.pcriot.com
AuthUserFile /home/rogerh/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/rogerh/public_html/_vti_pvt/service.grp

I am on the boru server.

I'm out of ideas. I tried to find solutions in these forums, but nothing has worked for me. Any help gratefully accepted.

Roger.
 
Last edited by a moderator:

xav0989

Community Public Relation
Community Support
Messages
4,467
Reaction score
95
Points
0
Wrong Thread, moving to free hosting support.
 
Status
Not open for further replies.
Top