in reply to Need help with CGI::Carp
It's taken from $ENV{SERVER_ADMIN} which is provided by your web server. In Apache, the ServerAdmin directive is used to set this.
If you don't have access to your web server's configuration files, or if your web server doesn't provide this environment variable, add
BEGIN { $ENV{SERVER_ADMIN} = 'webmaster@domain.com'; }
before
use CGI::Carp qw(fatalsToBrowser);.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Need help with CGI::Carp
by gl2103 (Novice) on May 11, 2005 at 19:00 UTC |