hello I m installing apache 1.3.19 on solaris sparc 7 with the following modules : mod_ssl ver 2.8.3-1.3.19 , mod_perl 1.25 mod_frontpage (i m using the patch that comes with fp50solaris.tar.gz) heres the way i go about the installation : =================================================================== mod_ssl cd mod_ssl-2.8.3-1.3.19 ./configure --with-apache=../apache_1.3.19 ============================================================= mod_perl cd mod_perl-1.25 /usr/local/bin/perl Makefile.PL \ APACHE_SRC=../apache_${APACHE_VER}/src \ DO_HTTPD=1 \ USE_APACI=1 \ PREP_HTTPD=1 \ EVERYTHING=1 make make install ============================================================== # configure apache cd apache_1.3.19 /usr/local/bin/patch -Nlp0 < ../fp-patch-apache_1.3.19 export SSL_BASE=../openssl-${OPENSSL_VER} ./configure \ --prefix=/usr/local/apache \ --enable-rule=EAPI \ --enable-module=all \ --enable-shared=max \ --disable-rule=WANTHSREGEX \ --disable-module=auth_dbm \ --disable-module=auth_db \ --enable-suexec \ --suexec-caller=web \ --suexec-docroot=/home \ --suexec-userdir=/home \ --with-perl=/usr/local/bin/perl \ --add-module=../$SOURCE2 \ --enable-module=ssl \ --enable-shared=ssl \ --disable-rule=SSL_COMPAT \ --activate-module=src/modules/frontpage/mod_frontpage.o \ --fpexec-caller=web \ --fpexec-fpuser=root \ --fpexec-fpgroup=root \ --enable-module=frontpage \ --enable-shared=frontpage \ --activate-module=src/modules/php4/libphp4.a \ --activate-module=src/modules/perl/libperl.a make make install ==================================================================== when i try to start the server /usr/local/apache/bin/apachectl start I get error saying that the mod_negotiation & proxy module not working. how do i solve this problem . are my configuration options correct ? NOTE : If i comment out LoadModule & AddModule statements in httpd.conf for negotiation & proxy the apache server starts & works fine. Regards Gauri