in reply to Output of STDERR - Probably an easy one

Neither Apache nor IIS will send STDERR to STDOUT, so it must be your code, something like
use CGI::Carp qw(fatalsToBrowser); CGI::Carp::carpout(\*STDOUT);

Replies are listed 'Best First'.
Re^2: Output of STDERR - Probably an easy one
by cosmicperl (Chaplain) on Oct 26, 2008 at 15:28 UTC
    I've done some further testing and IIS definitely sends STDERR to STDOUT (for perl.exe through CGI at least).

    Although thanks to your code I can now get Linux/Apache to do the same :)