php update

Please try:
Code:
cd /usr/local/directadmin/custombuild
./build update
./build phpMyAdmin

If it does not help, please post the output of:
Code:
grep php1_ /usr/local/directadmin/custombuild/options.conf
grep mod_ruid2 /usr/local/directadmin/custombuild/options.conf
 
grep php1_ /usr/local/directadmin/custombuild/options.conf
php1_release=5.5
php1_mode=mod_php

grep mod_ruid2 /usr/local/directadmin/custombuild/options.conf
mod_ruid2=yes
 
And the output of:
Code:
ls -la /var/www/html | grep phpMyAdmin
ls -la /var/www/html/phpMyAdmin/log
 
lrwxrwxrwx 1 webapps webapps 45 Sep 8 10:10 phpMyAdmin -> /var/www/html/phpMyAdmin-4.4.14-all-languages
drwxr-xr-x 11 webapps webapps 4096 Sep 8 10:10 phpMyAdmin-4.4.14-all-languages


ls -la /var/www/html/phpMyAdmin/log
total 8
drwxr-xr-x 2 webapps webapps 4096 Sep 3 11:16 .
drwxr-xr-x 11 webapps webapps 4096 Sep 8 10:10
 
Apache might not be running webapps under webapps user privileges. Please try the following and let us know if that did the trick:
Code:
cd /usr/local/directadmin/custombuild
./build rewrite_confs
 
Starting httpd: httpd: Syntax error on line 50 of /etc/httpd/conf/httpd.conf: Syntax error on line 1 of /etc/httpd/conf/extra/httpd-phpmodules.conf: Cannot load /usr/lib/apache/mod_ruid2.so into server: /usr/lib/apache/mod_ruid2.so: undefined symbol: unixd_config


cat /etc/httpd/conf/extra/httpd-phpmodules.conf
LoadModule ruid2_module /usr/lib/apache/mod_ruid2.so
Mutex sem
LoadModule mpm_prefork_module /usr/lib/apache/mod_mpm_prefork.so
LoadModule php5_module /usr/lib/apache/libphp5.so
 
Back
Top