> This might help, in you httpd.conf file set this
> 
>   PerlSendHeader Off
> 
> Tor.
> 
That messes up all the standard responses. I have a work around now 
-- naturally it came to me moments after I posted

don't know if this is "correct" so to speak, but it works fine.

  open(F,$file) || return 404;
  $r->send_fd(F);
  close F;

  pipe(R,W);

  print W "some dynamically generated text\n";
  close W;
  $r->send_fd(R);
  close R;

> Michael wrote:
> 
> > when using mod perl to return plain text to the client how does one
> > "send" without any headers in the response stream??
> >
> > $r->send_fd(F)
> >
> > works fine for files, but how do you do it for dynamically generated
> > content.
> >
> > Michael
> >
> > [EMAIL PROTECTED]
> 

Reply via email to