Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^2: CGI script gives "internal server error"

by manish.rathi (Acolyte)
on Mar 03, 2009 at 20:16 UTC ( [id://747882]=note: print w/replies, xml ) Need Help??


in reply to Re: CGI script gives "internal server error"
in thread CGI script gives "internal server error"

I removed space between <<END_OF_HTML, but still script did not run successfully.

I checked the error.log and there I saw following entries

"Tue Mar 03 15:10:42 2009 error client 127.0.0.1 (OS 5)Access is denied. : couldn't create child process: 720005: server_info.cgi

Tue Mar 03 15:10:42 2009 error client 127.0.0.1 (OS 5)Access is denied. : couldn't spawn child process: C:/Program Files/Apache Group/Apache2/cgi-bin/server_info.cgi"

What does these error messages suggest ?

  • Comment on Re^2: CGI script gives "internal server error"

Replies are listed 'Best First'.
Re^3: CGI script gives "internal server error"
by thunders (Priest) on Mar 03, 2009 at 20:30 UTC

    Maybe your server doesn't know to use perl to execute .cgi files? First make sure your script is executable(if on unix). Also try adding one of the following shebang lines as the very first line in your script.

    UNIX:
    #!/usr/bin/perl
    WINDOWS either:
    #!perl
    or
    #!C:\perl\bin\perl.exe

    You should substitute the path with the correct path to your perl executable

    UPDATE: Doh, obviously those are windows paths. Ignore what I said about UNIX and try "#!perl" on the first line. Also verify the file has the correct permissions, that it's readable by the webserver

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://747882]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (5)
As of 2024-04-18 02:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found