On Mon, May 17, 2004 at 12:23:26PM -0400, Wehner, Terry wrote: > Thanks for the info > > Could you actually provide the syntax that I should use. > > Not sure if it should be LoadModule mod_dir or what?
Certainly: http://httpd.apache.org/docs/mod/mod_so.html#loadmodule Well, first thing to do would be to run: $APACHE_BASE/bin/httpd -l and see if mod_dir is listed. If it is listed, then mod_dir is built into your apache and my theory may be wrong and it is possibly some other problem. If it isn't listed, then have a look in your $APACHE_BASE/libexec/ directory for a file named mod_dir.so (the extension may be different on your platform). If the file exists, then you need to add the following lines to your httpd.conf LoadModule dir_module libexec/mod_dir.so If it isn't built in and doesn't exist as a module, then you have a strange apache build :-) Any problems, then please post: - details of your apache build (if it's a package, please provide origin, if you built it yourself) - if your mod_jk build came from somewhere else, please state where from/how built - contents of httpd.conf - whether mod_dir is a builtin or a compiled module Cheers G -- If you want to know what God thinks of money, just look at the people he gave it to. -- Dorothy Parker --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
