jjmoka has asked for the wisdom of the Perl Monks concerning the following question:

I'm playing around Apache::DB to remotely debug scripts running under mod_perl-2. I can have an interactive debugging session, but when I finally reach my code there is no way to print symbols or even only a pretty listing of source lines. Did any Monk ever succeed to use effectively Apache::DB inspecting his own vars ?
http.conf: HTTPD='/usr/sbin/httpd -X -DPERLDB -f ~/debug.d/simple.conf' simple.conf: PerlModule ModPerl::PerlRun <IfDefine PERLDB> PerlRequire ~/handlers/db.pl </IfDefine> <Location /> SetHandler perl-script PerlHandler ModPerl::PerlRun <IfDefine PERLDB> PerlFixupHandler Apache::DB </IfDefine> Options +ExecCGI PerlSendHeader On PerlSetupEnv On Order allow,deny Allow from all </Location> ~/handlers/db.pl: use APR::Pool(); use Apache::DB (); Apache::DB->init();