Error in Ubuntu: PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php/20160303/php_mbstring.dll' - can not open shared object file

-1

When I install Laravel in Ubuntu, that information comes out, I have inserted the following command to perform the installation:

sudo composer create-project --prefer-dist laravel/laravel

EYE: I have PHP 7.1 installed.

    
asked by MiSCapu 13.02.2017 в 04:35
source

1 answer

2

Try reinstalling the php-mbstring extension,

sudo apt-get install php-mbstring

Then you deactivate it and activate it again using phpenmod/phpdismod

sudo phpdismod mbstring # disable mbstring extension sudo phpenmod mbstring # enable mbstring extension again

In the case that you are using windows, which I do not recommend, you should remove the enable this extension in the configuration file .ini

I hope you can help,

    
answered by 13.02.2017 / 05:40
source