Hi David -

> > that's the way it would work with apache 1.3, except that
> > ClearModuleList unloads everything, so you now need an AddModule for
> > every module, including mod_cgi, mod_rewrite, mod_auth, etc.
>
> Oh, too bad there isn't a RemoveModule. Then I could just do:
>
>    RemoveModule mod_dir.c
>    AddModule mod_dir.c

At apache 1.3 configure time there is "--permute-module" option, which can
swap module ordering:

   --permute-module=N1:N2
         on-the-fly permute module 'N1' with module 'N2'

You can either give it the names of two modules to swap, e.g.:

   --permute-module=dir:perl

or you can use special names "BEGIN" and "END" to move a module to the
beginning or end of the list, which might be what you want for mod_dir,
e.g.:

   --permute-module=dir:END


HTH,
Larry Leszczynski


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to