Are you using 'lookup_uri' or another form of subrequest somewhere
in your handlers? Try tracing your request and see where it goes
wrong. I had similar problems and it pointed out to be an error in
a subrequest. Consult the mailinglist archive if you want.
--Frank
> I have handler that looks like this:
>
> sub handler ($$) {
> my ($class, $apache) =3D @_;
> Apache::request($apache);
> $apache->status(200); # Default
>
> #.....
> }
>
> The vast majority of the time, this works fine. Every now
> and then, usually after the apache server has been up
...