Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ubuntu 16.04 The mbstring extension is missing

I want to migrate my web server from unsupported version of ubuntu 12.10. I installed 16.04 and installed apache2, php7, mysql and phpmyadmin.

When I want to use phpmyadmin I have error that mbstring missing.

In PHP.ini file, there is only to enable this extension for windows only.

When I install mbstring package, then when I reload phpmyadmin page, I get blank page without any error.

I installed following packages:

apache2, php, libapache2-mod-php, php-mysql, php-mbstring, php7.0-mbstring, mysql-server, phpmyadmin

When i uninstall mbstring packages, after phpmyadmin reload I see mbstring extension error...

What to do? I spent two days to fix this but have been unsuccessful... Thanks

like image 394
DusanP Avatar asked Jun 10 '16 08:06

DusanP


1 Answers

After you have installed the php7.0-mbstring module, you'll need to restart apache2 for it to take effect: sudo apachectl graceful

like image 193
Phil Y Avatar answered Oct 20 '22 12:10

Phil Y