Page 1 of 1

What does this mean

PostPosted: 02. October 2006 10:09
by flashwebb
C:\Program Files\xampp\apache\bin>apache
Syntax error on line 206 of C:/Program Files/xampp/apache/conf/httpd.conf:
Multiple <Directory> arguments not (yet) supported.



I have this now

ServerRoot "c:/program files/xampp/apache"



DocumentRoot "c:/wwwroot/html" >>>Line 206

#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>


#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# This should be changed to whatever you set DocumentRoot to.
#

<Directory DocumentRoot "c:/wwwroot/html">


why does not work???

PostPosted: 02. October 2006 12:44
by Wiedmann
<Directory DocumentRoot "c:/wwwroot/html">

That's wrong:
Code: Select all
<Directory "c:/wwwroot/html">