On 12/20/2005 04:50 PM, [EMAIL PROTECTED] wrote:
[..cut..] > @@ -208,6 +208,8 @@ > NULL, r, r->connection); > ap_add_output_filter_handle(ap_http_header_filter_handle, > NULL, r, r->connection); > + ap_add_output_filter_handle(ap_http_outerror_filter_handle, > + NULL, r, r->connection); > } Does this ensure that the HTTP_OUTERROR filter is run after the HTTP_HEADER filter? Otherwise I fear that they get in each others way, because the HTTP_OUTERROR filter should only handle things after the headers had been sent. Error buckets that occur before the headers have been sent are already handled by the HTTP_HEADER filter via ap_die. Regards RĂ¼diger
