아파치에 DSO를 지원하게 하기 위해 컴파일을 다시 해서 설치를 하였습니다.
설치시 썼던 명령은..
./configure --prefix=/usr/local/apache --activate-module=src/modules/php4/libphp4.a --enable-rule=SHARED_CORE --enable-
shared=max 이고...
make , make install를 끝낸후.. 아파치를 구동시키니 이런 말이 나오더군요
[root@localhost apache_1.3.19]# /usr/local/bin/apachectl start
Syntax error on line 329 of /usr/local/apache/conf/httpd.conf:
Invalid command 'Order', perhaps mis-spelled or defined by a module not included in the server configuration
/usr/local/bin/apachectl start: httpd could not be started
[root@localhost apache_1.3.19]#
LINE 329 쯤의 httpd.conf 의 내용은.. 다음과 같습니다.
<hr>
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
Options Indexes FollowSymLinks MultiViews
#
# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Order allow,deny <------------------------------ 329 라인
Allow from all
</Directory>
<hr>
이런 일이 발생하는데.. 어떻게 해야 합니까..?
해결 방법좀 알려주십시오...휴.........