Christian Klinger wrote:
Can you give me some tips for debugging this error?
You can attach gdb or ddd to the running httpd
see here:

http://httpd.apache.org/dev/debugging.html

and/or

You can use Apache::DB from CPAN
to get a PERL debugger for things under mod_perl.

See Apache::DB's documentation ...
I have a config handy so here it is:

in httpd.conf:
PerlRequire conf/db.pl
PerlModule Apache::DB
<Location />
 SetHandler modperl
 PerlFixUpHandler Apache::DB
</Location>


cat conf/db.pl
use APR::Pool ();
use Apache::DB ();
Apache::DB->init();

1;

If you can't figure it yourself, post a strack trace WITH debugging enabled to 
the list and we'll look again.

HTH


--
END
------------------------------------------------------------
    What doesn't kill us can only make us stronger.
                Nothing is impossible.
                                
Philip M. Gollucci ([EMAIL PROTECTED]) 301.254.5198
Consultant / http://p6m7g8.net/Resume/
Senior Developer / Liquidity Services, Inc.
  http://www.liquidityservicesinc.com
       http://www.liquidation.com
       http://www.uksurplus.com
       http://www.govliquidation.com
       http://www.gowholesale.com

Reply via email to