Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Apache::Filter and Apache::RegistryFilter

by perrin (Chancellor)
on Nov 19, 2003 at 19:37 UTC ( [id://308384]=note: print w/replies, xml ) Need Help??


in reply to Apache::Filter and Apache::RegistryFilter

It sounds like you are not setting the content-type. Add a call to content-type or apache_send_header() in your Registry script.
  • Comment on Re: Apache::Filter and Apache::RegistryFilter

Replies are listed 'Best First'.
Re: Re: Apache::Filter and Apache::RegistryFilter
by thraxil (Prior) on Nov 19, 2003 at 20:02 UTC

    i think you've got it. i changed my test script from:

    #!/usr/bin/perl use CGI; my $cgi = new CGI(); print $cgi->header(); foreach my $key (keys %ENV) { print "$key: $ENV{$key}<br />\n"; }

    to:

    #!/usr/bin/perl use Apache; my $r = Apache->request; $r->content_type("text/html"); $r->send_http_header; foreach my $key (keys %ENV) { print "$key: $ENV{$key}<br />\n"; }

    and it seems to work now.

    do you know of any way to make it work with the former style. i usually take as much advantage of Registry's CGI emulation as possible so i can run scripts as either CGI or Registry. i know i can just put:

    if ($ENV{MOD_PERL}) { use Apache; my $r = Apache->request; $r->content_type("text/html"); $r->send_http_header; } else { print $cgi->header(); }

    into everything, but i'd rather not have to retrofit all my apps just to make them filterable. at least i know that if i upgrade to apache2, i can make anything filterable with the native filtering API. :)

      You could set the content-type in your httpd.conf, either by file extension or with a directive inside your Location block. A better solution would be modifying Apache::Filter so it notices when you have already sent headers.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (3)
As of 2024-04-26 02:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found