Installed PHP using phpbrew, now phpmyadmin gives mbstring extension error

Installed an earlier PHP version for a fresh Ubuntu install using phpbrew and now my phpmyadmin is throwing an error.

Mistake:

The mbstring extension is missing. Please check your PHP configuration.

      

OS: Ubuntu 14.04 LTS

I uninstalled and reinstalled phpmyadmin, restarted the Apache server to no avail.

What am I missing?

Thank!

+3


source to share


3 answers


When installing different php versions I had to add modules



phpbrew install 5.4.34 +apxs2 +default +mysql

      

0


source


To install mbstring,

sudo apt-get install libapache2-mod-php5

      



restart Apache server

and .. go to your php.ini to activate the extension.

0


source


The only way to help me sudo apt-get install phpmyadmin php-mbstring php-gettext

My system is Ubuntu server 16.04 64 bit, PHP7.0 Apache2

0


source







All Articles