Re: [users@httpd] apache changes status code from 500 to 200

2012-07-11 Thread Pete Houston
Sounds like you want mod_asis: http://httpd.apache.org/docs/2.4/mod/mod_asis.html Pete -- Openstrike - improving business through open source http://www.openstrike.co.uk/ or call 01722 770036 / 07092 020107 pgpjatXwibclp.pgp Description: PGP signature

RE: [users@httpd] apache changes status code from 500 to 200

2012-07-11 Thread Ruud Dozijn
Sounds like you want mod_asis: http://httpd.apache.org/docs/2.4/mod/mod_asis.html I have put this in my httpd.conf: Location /cgi SetHandler perl-script PerlHandler ModPerl::Registry Options ExecCGI ErrorDocument 400 /handlers/400.h /Location Location /handlers

RE: [users@httpd] apache changes status code from 500 to 200

2012-07-11 Thread Ruud Dozijn
From: rdoz...@hotmail.com To: users@httpd.apache.org Date: Wed, 11 Jul 2012 12:33:49 +0200 Subject: RE: [users@httpd] apache changes status code from 500 to 200 Sounds like you want mod_asis: http://httpd.apache.org/docs/2.4/mod/mod_asis.html I have put this in my httpd.conf: Location

Re: [users@httpd] apache changes status code from 500 to 200

2012-07-11 Thread Pete Houston
On Wed, Jul 11, 2012 at 03:21:12PM +0200, Ruud Dozijn wrote: I have put this in my httpd.conf: Location /cgi SetHandler perl-script PerlHandler ModPerl::Registry Options ExecCGI ErrorDocument 400 /handlers/400.h /Location Location /handlers SetHandler send-as-is

RE: [users@httpd] apache changes status code from 500 to 200

2012-07-11 Thread Ruud Dozijn
Firstly, it turns out that it isn't a CGI script but rather a mod_perl2 registry script - different beast entirely. And given that, I'm surprised that you aren't using PerlOptions +ParseHeaders as suggested in the docs at