|
Re: mod_perl & mod_jk: msg#00191apache.mod-perl
MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) wrote: Hi, You say that it's working fine with 1.99_08, but I don't think anything significant has been changed in the configuration parsing between _07 and _08. Have you tried stepping through with gdb? It should be pretty easy to do if you use this script: http://perl.apache.org/docs/2.0/devel/debug/code/.debug-modperl-register as discussed here: http://perl.apache.org/docs/2.0/devel/debug/c.html#Precooked_gdb_Startup_Scripts You want to break at ap_find_command_in_modules, where the directive is searched for. It simply goes though the list of registered modules and asks each module whether it knows this command: for (modp = *mod; modp; modp = modp->next) { if (modp->cmds && (cmdp = ap_find_command(cmd_name, modp->cmds))) { *mod = modp; return cmdp; } } If you see that mod_jk is not in that list, you have to go back earlier and see why it failed to get mod_jk into the list. Somewhere around ap_add_module. p.s. I use ddd over gdb, which makes the debugging a much easier task. __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:stas@xxxxxxxxxx http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com |
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| Previous by Date: | mod_perl & mod_jk: 00191, MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) |
|---|---|
| Next by Date: | HEAD requests in Apache 2.0: 00191, Stas Bekman |
| Previous by Thread: | mod_perl & mod_jki: 00191, MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) |
| Next by Thread: | RE: mod_perl & mod_jk: 00191, MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) |
| Indexes: | [Date] [Thread] [Top] [All Lists] |
| News | FAQ | advertise |