skip to Main Content

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)
enter image description here

2

Answers


  1. Chosen as BEST ANSWER

    I upgraded phpmyadmin to version 5

    https://devanswers.co/manually-upgrade-phpmyadmin/

    And now it works


  2. 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/

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search