At 02:53 PM 11/23/01 +0000, Jean-Michel Hiver wrote:
>  My only concern is that I thought that Apache::Registry was designed
>  to act as a CGI emulator, allowing not so badly written CGIs to have
>  mod_perl benefits without having to change them.

Right, sorry I completely missed the Registry part!

Try HEAD on this script.

#!/usr/local/bin/perl -w
use CGI;

my $q = CGI->new;

print $q->header, $q->start_html,
      join( "<BR>\n", map { "$_ : $ENV{$_}" } keys %ENV),
      $q->end_html;



>  If I have to use the $r object (and therefore the Apache module), then
>  it means that the scripts won't be able to run as standalone CGIs...
>
>Am I right?

Right,  maybe that's a good thing ;) (I acutally mix mod_perl code in
applicatins that will run under both.)



Bill Moseley
mailto:[EMAIL PROTECTED]

Reply via email to