how do i generate httpd.conf with suphp?

dwm

Verified User
Joined
Dec 4, 2007
Messages
64
Location
Netherlands
I am working on my new system with Apache 2.0 and i need to have the suphp module not commented after a ./build rewrite_confs. Now everytime i get this output:

Code:
#
#LoadModule php4_module /usr/lib/apache/libphp4.so
LoadModule php5_module /usr/lib/apache/libphp5.so
#LoadModule suphp_module /usr/lib/apache/mod_suphp.so

What i want is this output:

Code:
#
#LoadModule php4_module /usr/lib/apache/libphp4.so
LoadModule php5_module /usr/lib/apache/libphp5.so
LoadModule suphp_module /usr/lib/apache/mod_suphp.so

I have already tried setting suphp=1 in the options.conf, but that does not fix the problem. Anyone knows this?
 
Back
Top