PHP Startup Unable to load dynamic library /usr/lib/php/20151012/php_mysqli.dll

前端 未结 9 908
一整个雨季
一整个雨季 2021-01-04 07:32

I have ubuntu 14.04 EC2 instance. I have installed php 7 on it. when I execute any php command like php --version or any other. I get following error

PHP War         


        
9条回答
  •  猫巷女王i
    2021-01-04 08:20

    I have recently encountered this problem on ubuntu16.04, I finally resolve it by adding a semi-colon at each line like extension=php_*.dll,I think that is because LAMP on ubuntu is intelligent enough,it automatically opens all of the extensions for us. And on windows,we have to enable the extensions manually by remove the semi-colon at each line like ;extension=php_*.dll in php.ini.

提交回复
热议问题