Bram Whillock wrote:
Getting rid of the fatalsToBrowser does nothing.

The second script gives me an error:
[Mon Apr  5 14:17:15 2004] [error] PerlRun: `Can't call method
"send_http_header" on an undefined value at /var/www/beta/modperl.cgi
line 3.

Meaning that you aren't running that script under modperl, but as mod_cgi. You configuration is broken then. To confirm, try:


#!/usr/bin/perl
print "content-type: text/plain\n\n";
print $ENV{MOD_PERL} ? "mod_perl" : "mod_cgi";

__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html



Reply via email to