Reputation: 2469
I upgraded my php from 7.4 to 8.0 after that, I can log in to phpmyadmin and it shows all databases but after one second all databses disappear,and when I click on every tab it returns blank page like this one : (I work on ubuntu)
Upvotes: 1
Views: 3635
Reputation: 2469
I upgraded phpmyadmin to version 5
https://devanswers.co/manually-upgrade-phpmyadmin/
And now it works
Upvotes: 2
Reputation: 51
Before installing PHP 8.0. you need to remove the old version
sudo apt-get purge php7.4
(or)
sudo apt-get --purge remove php7.4
Or
Disable the old version and enable the new version,
sudo a2dismod php7.4
sudo a2enmod php8.0
Now check the PHP version,
php -v
Then restart the apache
sudo service apache2 restart
Otherwise, follow the URL
https://devanswers.co/how-to-upgrade-from-php-7-x-to-php-8-on-ubuntu-apache/
Upvotes: 1