PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php/20151012/msqli.so'

后端 未结 2 931
离开以前
离开以前 2021-01-28 07:34

Looked at all the articles on search for this and no answers that work -- on Ubuntu 16.04 I\'m getting:

PHP Warning:  PHP Startup: Unable to load dynami         


        
2条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-28 08:04

    It seems that uninstalling all versions of php with

    sudo apt-get purge `dpkg -l | grep php | awk '{print $2}' | tr "\n" " "`` 
    

    and only installing the latest version with

    apt install php libapache2-mod-php php-mysql php-xml php-soap php-gd php-mbstring
    

    solved the problem for me.

提交回复
热议问题