Answers for "you can also run `php --ini` inside terminal to see which files are used by php in cli mode."

PHP
0

you can also run `php --ini` inside terminal to see which files are used by php in cli mode.

Your error message is pretty explicit about what is going wrong:

laravel/framework v5.2.9 requires ext-mbstring * -> the requested PHP extension mbstring is missing from your system.

Do you have mbstring installed on your server and is it enabled?

You can install mbstring as part of the libapache2-mod-php5 package:

sudo apt-get install libapache2-mod-php5

Or standalone with:

sudo apt-get install php-mbstring

Installing it will also enable it, however you can also enable it by editing your php.ini file and remove the ; that is commenting it out if it is already installed.

If this is on your local machine, then follow the appropriate steps to install this on your environment.
Posted by: Guest on March-12-2021

Code answers related to "you can also run `php --ini` inside terminal to see which files are used by php in cli mode."

Browse Popular Code Answers by Language