HTTP 500 error when I run my Perl script

by LinuxTitli on January 21, 2006 · 2 comments

At my work place, we provide shared hosting and http 500 error is the most common in trouble tickets. Although everything is properly configured we still get reports of error.

Send MIME type

99% time - it was not servers fault at all. I found that the most common reason for HTTP 500 errors is not printing the MIME type before outputting data to the web browser. All you need following line before outputting data to the web browser:

print "Content-type: text/html\n\n";

Perl does not automatically generate HTML. Also try following few suggestions:

Permissions

You need to setup file permissions on perl script

chmod  755 perlscript.pl
chmod  +x perlscript.pl

Perl script location
It must be in cgi-bin directory (or directory configured to run perl). Some servers are configured to run your CGI scripts anywhere.

Error log file

Please check your log file to find errors in your Perl script.

tail -f /var/log/httpd/error.log
tail -f /var/log/httpd/access.log

Debug

Pass -wc option to perl script at shell prompt, enter:

perl -wc myscript.pl

It will often point out exactly where the trouble is.

I am not perl guru but as a sys admin, I need to look after this kind of problems. What other techniques all of you follow to troubleshoot Perl http 500 error problem?

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

We're here to help you make the most of sysadmin work. So, subscribe!

{ 2 comments… read them below or add one }

1 Anonymous January 21, 2006

Was browsing your site for something else I found this post. I can say use the CGI Perl module. It is more easy and you can avoid error 500. See CGI.pm doc @ here or
here

Reply

2 ft January 21, 2006

I suggest include the following line at the top of your perl script:

#!/usr/bin/perl –w

just my 2 cents

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 7 + 14 ?
Please leave these two fields as-is:
Are you a human being? Solve the simple math so we know that you are a human and not a bot.



Previous post:

Next post: