Re: Tomcat 6 not working with Apache 1.3.37 on Debian

2009-06-23 Thread zvince
I found an error in my Apache configuration : IfModule jk_module is wrong. IfModule mod_jk.c is correct. IfModule !mod_jk.c is what we need to load the module. The ! means that the directives will be executed if the module is not in the modules list. so, if I am right, IfModule !mod_jk.c

Re: Tomcat 6 not working with Apache 1.3.37 on Debian

2009-06-23 Thread Rainer Jung
On 23.06.2009 14:57, zvince wrote: I found an error in my Apache configuration : IfModule jk_module is wrong. IfModule mod_jk.c is correct. IfModule !mod_jk.c is what we need to load the module. The ! means that the directives will be executed if the module is not in the modules list. so,