Exit problem using mod_perl 1.99 apache 2.049

2004-06-16 Thread Cadman, Andrew (Contractor)
Title: Exit problem using mod_perl 1.99 apache 2.049 Hi I am a mod_perl newbie so apologies if I am missing something obvious here. I am converted some perl scripts and packages into mod-perl using apache 2.049 and mod_perl 1.99 running on Linux RedHat 9. Generally, as the scripts were

Re: Exit problem using mod_perl 1.99 apache 2.049

2004-06-16 Thread Stas Bekman
Andrew, please read the following guidelines for bug reporting and try again. Thanks. http://perl.apache.org/bugs/ (1.99_xx == 2.0) -- __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_p

Re: Exit problem using mod_perl 1.99 apache 2.049

2004-06-16 Thread William McKee
On Wed, Jun 16, 2004 at 02:03:25PM +0200, Cadman, Andrew (Contractor) wrote: > Generally, as the scripts were well written few errors were reported and > these have been dealt with. None of the logs files: - the virtual host log, > apache general error log or /tmp.db.out (using the Apache::DB in st

RE: Exit problem using mod_perl 1.99 apache 2.049

2004-06-16 Thread Kreimendahl, Chad J
Title: Exit problem using mod_perl 1.99 apache 2.049   This error typically happens when you don't return headers (beyond 200 OK)... such as content-type and content-legth.  Check your scripts and make sure you're explicily returning headers before you print the page. From: Cadm