You CAN have PHP 5.2 and 5.3 on the system. This trick will work with CustomBuild 1.2 (PHP5.2 as CLI and 5.3 as CGI (suPHP)):
Now PHP 5.3 will be installed as PHP6 in configuration filesCode:cd /usr/local/directadmin/custombuild ./build set custombuild 1.2 ./build update mkdir -p custom/suphp cp -pf configure/suphp/configure.php5 custom/suphp/configure.php6 perl -pi -e 's/php53/phprep/' versions.txt perl -pi -e 's/php6/php53/' versions.txt perl -pi -e 's/phprep/php6/' versions.txt ./build set php5_ver 5.2 ./build set php6_cgi yes ./build set php5_cgi no ./build set php5_cli yes #set php6-cgi (or cli) to yes in the options.conf ./build php n mv -f /usr/local/php6 /usr/local/php6_old ln -s /usr/local/php5 /usr/local/php6
this worked perfectly over the passed 2 years, but now i need to change to 5.3 default ald 5.2 for my users who don't have upgraded yet... what do i need to change to get that result?