Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: trapping system error

by psini (Deacon)
on Aug 28, 2010 at 09:18 UTC ( [id://857822]=note: print w/replies, xml ) Need Help??


in reply to trapping system error

"print" sends its output to STDOUT whilst "die" (like "warn") sends to STDERR. In a CGI environment, STDOUT goes to the browser that requested the page, STDERR to Apache log file; so you can add $! to the print line like

print "Not able to create directory $!";

Rule One: "Do not act incautiously when confronting a little bald wrinkly smiling man."

Replies are listed 'Best First'.
Re^2: trapping system error
by anu_1 (Acolyte) on Aug 28, 2010 at 11:01 UTC
    Hi, Thanks for explaining the problem...I tried what you suggested. But still the system error is not displayed in html I tried to execute the script without cgi.
    unless (`mkdir -p "/xyz/abc/test"`) { die "myerror $!"; }
    Here is the output
    mkdir: cannot access directory /xyz/abc/test. /xyz/abc/test: Permission denied myerror: at ./testerror line 8
    The part after myerror is the line number .
      TL;DR:
      • print to print to STDOUT and therefore the browser
      • die to print to STDERR and therefore the error log
      By using die you're still saying "I want this in the error log, not sent to the browser".

      You want to say this:

      if (my $output = `mkdir -p /xyz/abc/test 2>&1`) { chomp $output; my $message = "Unable to create directory for (whatever the purpose +was) /xyz/abc/test: $output ($!)"; print $message,"\n"; die $message; exit; }
      This runs your mkdir in a way that captures the output from mkdir's STDERR into $output (if the mkdir works, it doesn't print anything). If there was output from the invoked command, then we chomp the output to remove the trailing newline, and print it to STDOUT - for a CGI program, you must print stuff to STDOUT if you want to see it in the browser.

      Note that we printed a full report on the error, following the old journalistic standard of who, what, when, where, and why:

      1. A descriptive message: why this matters and approximately when it happened during execution
      2. The name of the directory: where we were trying to do the operation
      3. The error message from mkdir and the error code: what the error was
      "who" is the CGI program; if you just have one script, you probably don't need the who; if you have multiple scripts in use by your server, you could print the name of your program (in $0; note that mkdir does this to tell you who failed when it can't create the directory).

      Note that I built the message, printed it with a newline, and then did a die with the message sans newline. This means that the message logged in the error log will have the line number and script name supplied automatically and the one shown in the browser won't. Why? Because the final user of the program does not care about scripts and line numbers, only results. The log gets the script name and line number because only developers read logs, not users, and the developers need to know this stuff, unlike the users.

      Permission denied means the user under which apache executes your programs doesnt have permission to create /xyz/abc/test
        Yes ..How do i display that in a browser?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-16 12:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found