PHP 7 with phpmyadmin gives lots of Deprecation Notices

前端 未结 20 1279
失恋的感觉
失恋的感觉 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

    You should try in your php.ini to set error_reporting = ~E_DEPRECATED, this will remove deprecation errors. It should be similiar to error_reporting = ~E_DEPRECATED & E_ALL. Please let me know if it works.

    0 讨论(0)
  • 2020-12-12 13:49

    You can use another PPA for phpmyadmin.Here it is PPA Link

    sudo add-apt-repository ppa:nijel/phpmyadmin
    sudo apt update
    sudo apt install phpmyadmin
    

    As it is only a temporary solution or not a optimal one, till the package of phpmyadmin in ubuntu repos are rebuild.

    0 讨论(0)
提交回复
热议问题