It should be fixed in http://files.directadmin.com/services/customapache/beta/customapache/build. Could you test it? P.S. you need to copy the old configs for apache 1.3
Old config files? What do you mean?
It should be fixed in http://files.directadmin.com/services/customapache/beta/customapache/build. Could you test it? P.S. you need to copy the old configs for apache 1.3
cp -f /etc/httpd/conf/httpd.conf.1.3.backup /etc/httpd/conf/httpd.conf
perl -pi -e 's/apache_ver=2.0/apache_ver=1.3/' /usr/local/directadmin/conf/directadmin.conf
echo "action=rewrite&value=ips" >> /usr/local/directadmin/data/task.queue
echo "action=rewrite&value=httpd" >> /usr/local/directadmin/data/task.queue
echo "action=directadmin&value=restart" >> /usr/local/directadmin/data/task.queue
doAll() {
FORCE=1;
#convert;
if [ "${APACHE_OPT}" = "1.3" ]; then
doApache;
elif [ "${APACHE_OPT}" = "2.0" ] || [ "${APACHE_OPT}" = "2.2" ]; then
doApache2;
fi
#Sorry debian, but zzip has far too many problems
#one version works on one instance of 3.1, but not another instance.
#another version work in the opposite manner. No solution. Removed.
if [ -e /etc/debian_version ]; then
mv -f $PHP5_CONFIGURE ${PHP5_CONFIGURE}.nozip
cat ${PHP5_CONFIGURE}.nozip | grep -v zip > $PHP5_CONFIGURE
chmod 755 $PHP5_CONFIGURE
mv -f $PHP5_CONFIGURE_AP2 ${PHP5_CONFIGURE_AP2}.nozip
cat ${PHP5_CONFIGURE_AP2}.nozip | grep -v zip > $PHP5_CONFIGURE_AP2
chmod 755 $PHP5_CONFIGURE_AP2
fi
doPhp;
doModPerl;
doAll() {
FORCE=1;
#convert;
if [ "${APACHE_OPT}" = "1.3" ]; then
doApache;
elif [ "${APACHE_OPT}" = "2.0" ] || [ "${APACHE_OPT}" = "2.2" ]; then
doApache2;
fi
#Sorry debian, but zzip has far too many problems
#one version works on one instance of 3.1, but not another instance.
#another version work in the opposite manner. No solution. Removed.
if [ -e /etc/debian_version ]; then
mv -f $PHP5_CONFIGURE ${PHP5_CONFIGURE}.nozip
cat ${PHP5_CONFIGURE}.nozip | grep -v zip > $PHP5_CONFIGURE
chmod 755 $PHP5_CONFIGURE
mv -f $PHP5_CONFIGURE_AP2 ${PHP5_CONFIGURE_AP2}.nozip
cat ${PHP5_CONFIGURE_AP2}.nozip | grep -v zip > $PHP5_CONFIGURE_AP2
chmod 755 $PHP5_CONFIGURE_AP2
fi
doPhp;
if [ "${APACHE_OPT}" = "1.3" ]; then
doModPerl;
elif [ "${APACHE_OPT}" = "2.0" ] || [ "${APACHE_OPT}" = "2.2" ]; then
doModPerl2;
fi
http://files.directadmin.com/services/customapache/beta/ said:After it's done, you will probably need to remove:
LoadModule frontpage_module /usr/lib/apache/mod_frontpage.so
and
LoadModule perl_module /usr/lib/apache/mod_perl.so
from your /etc/httpd/conf/httpd.conf.
mod_dav replaces frontpage (woohoo) and nobody seems to ever be using mod_perl.