httpd start faild Please help

./apachectl start
[Sat Jan 07 18:02:38 2006] [warn] module deflate_module is already loaded, skipping
[Sat Jan 07 18:02:38 2006] [warn] module headers_module is already loaded, skipping


after i`ve installed the apache in the tutorial they told me to add the following cod to the httpd.conf

LoadModule deflate_module modules/mod_deflate.so
LoadModule headers_module modules/mod_headers.so
<IfDefine SSL>
LoadModule ssl_module modules/mod_ssl.so
</IfDefine>

<Location />
<IfModule mod_deflate.c>
#compress content with type html, text, and css
AddOutputFilterByType DEFLATE text/html text/plain text/css
<IfModule mod_headers.c>
#properly handle requests coming from behind proxies
Header append Vary User-Agent
</IfModule>
</IfModule>
</Location>

#properly handle old browsers that do not support compression
<IfModule mod_deflate.c>
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
</IfModule>

"[one or two of the LoadModule lines will need to be uncommented instead of added] " and this is under the code and i do not understand what i should do .. can some one tell me where i need to put the code and what i`m doing wrong ...

i`ve try to start the httpd and it doesen't start

Starting httpd: [FAILED]
please help

 

 

 

 

Top