AWS: Error installing php Myadmin

1

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

My php is 7.0.16 How can I fix it? Thanks

    
asked by anonymous 29.03.2017 / 14:54

1 answer

1

Try using the following commands:

sudo apt-get install libapache2-mod-php7.0
sudo apt-get install php7.0-mbstring

And then:

sudo service apache2 restart

I hope it works

    
29.03.2017 / 15:30