Hi All 
I have followed this tutorial:
http://help.directadmin.com/item.php?id=520
I did it as:
Followed by:
However my phpinfo still shows:
Also the apachectl -M command does not show that fastcgi is loaded.
Can anyone point me in the right direction? Thanks!
In addition, should this cover changing the rights for the current users?

I have followed this tutorial:
http://help.directadmin.com/item.php?id=520
I did it as:
cd /usr/local/directadmin/custombuild
./build update
./build set php1_release 5.3
./build set php2_release no
./build set php1_mode fastcgi
./build set mod_ruid2 no
./build set use_hostname_for_alias yes
Followed by:
./build php n
./build rewrite_confs
However my phpinfo still shows:
Server API Apache 2.0 Handler
Also the apachectl -M command does not show that fastcgi is loaded.
Can anyone point me in the right direction? Thanks!
In addition, should this cover changing the rights for the current users?
#!/bin/sh
for i in `ls /usr/local/directadmin/data/users`; do
{
chmod -R 755 /home/$i/domains/*/private_html/
chmod -R 755 /home/$i/domains/*/public_html/
chown -R $i:$i /home/$i/domains/*/private_html/
chown -R $i:$i /home/$i/domains/*/public_html/ }
done;
Last edited: