Can't update phpMyAdmin to v5.0.2

hugoweb

New member
Joined
Mar 22, 2013
Messages
1
I want to update phpMyAdmin to v5 version and I got error with php version.
Code:
Executing /usr/local/directadmin/plugins/custombuild/admin/build phpmyadmin..
phpMyAdmin 5.0.2-all-languages requires PHP 7.1+, but 5.6 is installed
Dropping phpMyAdmin version down to 4.9.5-all-languages

So I modify /etc/httpd/conf/extra/httpd-hostname.conf file and change php version:
Code:
<FilesMatch "\.(inc|php|phtml|phps|php71)$">
    AddHandler "proxy:unix:/usr/local/php71/sockets/webapps.sock|fcgi://localhost" .inc .php .phtml .php71
</FilesMatch>

This is not work because CustomBuild still see version as 5.6 (this is php1_release on my server).

Can someone help me with this case?
 
Try one of these 2 options.
remove php 5.6 from the server entirely as it is EOL and unsafe and put 7.1+ on the server entirely.

OR

Move it off of php1_release and put 7.1 or higher there and put the old php on 2 or 3 or 4

Make sure if you do the second option to change all the user websites that need php5.6 to whatever number you move it too. They won't auto move.
 
Back
Top