in reply to PerlFixupHandler help

I'm on the right track now...this is being caused by apache internal requests or subrequests that are looking for the directory index file. So each test done to look for whatever apache needs runs the PerlFixupHandler again.

This gives me some new ideas to test, but I welcome insight from those of you familiar with apache. I will post my solution once I have it nailed down.

Replies are listed 'Best First'.
Re^2: PerlFixupHandler help
by jhx (Initiate) on May 20, 2011 at 18:41 UTC
    return DECLINED unless $r->is_initial_req();

    Guess I just needed to spend some more time studying mod_perl.