PHP 7 with phpmyadmin gives lots of Deprecation Notices

前端 未结 20 1293
失恋的感觉
失恋的感觉 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条回答
  •  萌比男神i
    2020-12-12 13:28

    at last I solved this problem permanently.

    Find your php.ini file in your server. It should be in /etc/php/7.0/apache2 folder

    open it with nano

    nano /etc/php/7.0/apache2/php.ini
    

    Find (ctrl+w) upload_max_filesize = 2M (default) in php.ini file

    change default value to 50M or 100M or 20M as you wish.

    Save and restart apache2 service

    service apache2 restart
    

    and please tell me your satisfactions :-)

提交回复
热议问题