Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: System commands using CGI

by blue_cowdawg (Monsignor)
on Dec 03, 2012 at 17:06 UTC ( [id://1006914]=note: print w/replies, xml ) Need Help??


in reply to System commands using CGI

      Hi, I am trying to execute system commands from CGI but it doesnt work.If I execute the same code from command line, the code works fine.

This is a very common "gotcha" that it would seem all Perl programmers and Perl programmer wannabes go through at some point in their Perl travels.

Stepping back from your original complaint for just a second let me share with you my typical approach for troubleshooting a CGI problem.

  1. First off understand exactly how your web server is set up. What userid is your CGI environment running as being one of the first things I want to know about. Don't assume anything, that's bad for you, stunts your growth, curls your spine and causes you to forget to use strict; in your coding. :-) A handy piece of code that I use is as follows:
    #!/usr/bin/perl -w #----------------------------------- # Script to dump my environment to a browser from CGI. # CAVEAT: Never, ever by all that is holy leave this script in a # production environment use strict; use CGI qw/ :all /; my $cgi = new CGI; print $cgi->headers,$cgi->start_html; # start the show; print hr,b("ENV Dump"); print ul( map { li($ENV{$_} } keys %ENV ); print hr,b("CGI Param Dump"); print ul( map { li($cgi->param($_)) } $cgi->param ); print $cgi->end_html; exit(0);
    This will give you an idea what you are dealing with and will be a big help in troubleshooting.
  2. Find out where your server logs are and start watching them.
  3. Embed some debugging statements into your code.
  4. Run your code and watch all the fun

Given your original complaint I'd look at system permissions for both running the command in the first place (which is why your code will behave differently at the command line than when run from CGI). Typically CGI is run as a non-elevated user and on some *nix systems it is run as "nobody" or "nofiles" which will eliminate your ability to create/modify files.

Hope this helps you along your way.


Peter L. Berghold -- Unix Professional
Peter -at- Berghold -dot- Net; AOL IM redcowdawg Yahoo IM: blue_cowdawg

Replies are listed 'Best First'.
Re^2: System commands using CGI
by Anonymous Monk on Jul 11, 2013 at 15:09 UTC
    Helpful, but some syntax errors:

    $cgi->headers

    should be:

    $cgi->header

    missing closing ")":

    map { li($ENV{$_} } keys %ENV

    should be:

    map { li($ENV{$_}) } keys %ENV

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-25 12:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found