how to install mod_ext_filter

iprodua

Verified User
Joined
Oct 5, 2007
Messages
78
how to install mod_ext_filter?
where can i find mod_ext_filter.c in DA or what have i do?
 
What I would probably do is..

Presuming you used custombuild to install Apache etc..

#1 Locate the appropriate configure.apache file which, if you installed Apache 2.2, should be located at
/usr/local/directadmin/custombuild/configure/ap2/configure.apache

#2 Add the following line to the bottom of configure.apache

Code:
"--enable-ext-filter"

but also remember to add a backslash to the line above it, for example if before the change you have
Code:
...
        "--enable-ssl" \
        "--enable-rewrite" \
        "--with-ssl=/usr" \
        "--enable-headers"
After the change you should have
Code:
...
        "--enable-ssl" \
        "--enable-rewrite" \
        "--with-ssl=/usr" \
        "--enable-headers" \
        "--enable-ext-filter"

#3
Code:
cd /usr/local/directadmin/custombuild && ./build apache

Once custombuild has finished you should have mod_ext_filter built into Apache nicely.
 
Back
Top