How to downgrade phpMyAdmin to work with php 5.4?

beansbaxter

Verified User
Joined
Mar 17, 2004
Messages
218
Location
WA
Running:
  • DA 1.50.0
  • Apache 2.4.18
  • php 5.4.45
When trying to run phpMyAdmin, I get the following error:
Code:
PHP 5.5+ is required

How can I downgrade phpMyAdmin to the most recent version that will work with php 5.4?

Thanks in advance.
 
This might not be the fastest way but you can do it like this if you are on Centos.
Code:
rm -rf /var/www/html/phpMyAdmin*
cd /usr/local/directadmin/custombuild
rm phpMyAdmin*
./build set phpmyadmin_ver 3
./build update
./build clean
./build phpmyadmin
 
Back
Top