PHP 7 with phpmyadmin gives lots of Deprecation Notices

前端 未结 20 1289
失恋的感觉
失恋的感觉 2020-12-12 13:16

I have Ubuntu 16.04 LTS running with PHP7 and phpmyadmin installed. However, I get a lot of deprecation notices like:

Depre         


        
20条回答
  •  南方客
    南方客 (楼主)
    2020-12-12 13:44

    I had this problem and solved it with a simple reinstall of phpmyadmin and its dependencies. Run the following commands:

    sudo apt-get remove --purge phpmyadmin php-gettext php-mbstring -y
    sudo apt-get autoremove -y
    sudo apt-get update
    sudo apt-get install phpmyadmin php-gettext php-mbstring -y
    

    Once reinstalled, you should be good as new!

提交回复
热议问题