add php module to PHP5.6 in DirectAdmin CP.
1.First, figure out which configure file your system is using. Type:
cd /usr/local/directadmin/custombuild
./build used_configs | grep configure.php
2.It might look like this:
PHP (default) configuration file: /usr/local/directadmin/custombuild/configure/ap2/configure.php56
3.Change in the values if they're different.
To add this flag, run the following:
cd /usr/local/directadmin/custombuild
mkdir -p custom/ap2
cp -fp configure/ap2/configure.php56 custom/ap2/configure.php56
3. Add your --with-module line to the end of the custom/ap2/configure.php56 file, and make sure the \ character exists at the end of all lines except the last one. The \ character tells the line configure line to loop to the next line, making the configure settings easier to read. Without the \ character to trigger the wrap, the next line becomes a separate command, which is not correct. (see error below). Once set, type:
เช่น --enable-exif แล้วสั่ง
./build php n
change configure.php5 to configure.php4 if you're using php4.
If you're using suphp, the paths would be configure/suphp/configure.php5 and custom/suphp/configure.php5.
4.Restart apache:
RedHat:
/sbin/service httpd restart
FreeBSD:
/usr/local/etc/rc.d/httpd restart