Re: [users@httpd] Request mixup with internal redirects

2012-07-12 Thread Andrew
That fixes it! Thanks!! I'm using ap_hook_post_read_request and sandwiching it between modsetenvif and another custom module with APR_HOOK_FIRST On Wed, Jul 11, 2012 at 6:07 PM, Nick Kew wrote: > > On 12 Jul 2012, at 00:51, Andrew wrote: > >> Hi All, >> >> I'm seeing some unusual behavior with m

Re: [users@httpd] Request mixup with internal redirects

2012-07-11 Thread Nick Kew
On 12 Jul 2012, at 00:51, Andrew wrote: > Hi All, > > I'm seeing some unusual behavior with my module when using internal > redirects. When I redirect, e.g. > > ap_internal_redirect(url, r); > return OK; Are you doing that from somewhere early in the request processing cycle? What happens if

[users@httpd] Request mixup with internal redirects

2012-07-11 Thread Andrew
Hi All, I'm seeing some unusual behavior with my module when using internal redirects. When I redirect, e.g. ap_internal_redirect(url, r); return OK; I noticed the original request continues to process (going through all the handlers), although the redirect request is returned to the browser. So