Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help needed here.

Status
Not open for further replies.

adelinewss

Programmer
May 22, 2000
20
SG
Hi,<br>I am new to apache server and have a problem here.&nbsp;&nbsp;May I know how to compile DSO support into apache?&nbsp;&nbsp;Without it I can't execute LoadModule and AddModule in my httpd.conf.&nbsp;&nbsp;It will return following errors:-<br><br>&quot;Syntax error on line 207 of /usr/local/apache/conf/httpd.conf:<br>Invalid command 'LoadModule', perhaps mis-spelled or defined by a module not included in the server configuration&quot;<br><br>Thks,<br>Adeline
 
Firstly, you should enable the Mod_so module in the apache<br><br>./configure --enable-module=so prefix=......(apache install path)<br>make<br>make install<br><br>secondly, you should using the tools of apache, apxs<br><br>./apxs -c -i -a [modulefilename (full path)]<br><br>it will config your httpd.conf in apache, that the process will complete.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top