i'm installing ISPconfig on debian 3.1. i've come to the problem which i cant solve. the error is:
Quote:
########## WEB SERVER ##########
Checking for program httpd...
/usr/bin/httpd
OK
Checking the syntax of the httpd.conf...
httpd: could not open document config file /etc/apache2/apache2.conf
ERROR: The syntax of your httpd.conf is not ok! Please correct the error. The installation routine stops here!
home:/usr/local/src/install_ispconfig#
|
the setup2 looks like this:
Quote:
echo "########## WEB SERVER ##########"
echo
which httpd > /dev/null
if [ $? != 0 ]; then
which apache > /dev/null
if [ $? == 0 ]; then
ln -s `which apache` /usr/bin/httpd
fi
which apache2 > /dev/null
if [ $? == 0 ]; then
ln -s `which apache2` /usr/bin/httpd
fi
fi
echo $q_httpd_check
which httpd
if [ $? != 0 ]; then
which httpd2
if [ $? != 0 ]; then
error "httpd not found!";
else
ln -s `which httpd2` /usr/bin/httpd
echo OK
fi
else
log "httpd found: `which httpd`"
echo OK
fi
fi ## install_art == install
echo $q_httpd_syntax_check
httpd -t
if [ $? != 0 ]; then
error "$q_httpd_syntax_check_not_ok";
fi
echo $q_httpd_syntax_check_ok
log "httpd syntax ok!"
if [ "$install_art" == "install" ]; then
|
the ./httpd -t command returns: Syntax OK!
the $PATH includes all the paths it should..
I simply don't know what else could be wrong..
Why does it say " could not open document config file /etc/apache2/apache2.conf" this folder doesnt exist on my server!
Where did he find that path?
I would really appreciate your help!
Thx
Recent comments
1 day 5 hours ago
1 day 5 hours ago
1 day 10 hours ago
1 day 17 hours ago
1 day 18 hours ago
1 day 19 hours ago
1 day 23 hours ago
2 days 6 hours ago
2 days 10 hours ago
2 days 12 hours ago