Author Login
Post Reply
Hello, I am trying to debug my perl code under mod_perl and I had
followed all the instruction at this section
http://perl.apache.org/docs/1.0/guide/debug.html#Interactive_mod_perl_Debugging
I managed to see my perl debugging console prompted , but this prompt
is shown by the
tail -f /var/log/apache2.log
DB<1> ModPerl::RegistryCooker::default_handler(/usr/local/lib/perl/5.8.8/ModPerl/RegistryCooker.pm:172):
172: return ($rc == Apache2::Const::OK && $old_status != $new_status)
173: ? $new_status
174: : $rc;
DB<1>
I was thrilled for a while that it did appear, but then it's just an
output but not input. Where am I suppose to see and use the debugger ?
Thanks.