1
Hello,
I try to access my phpMyAdmin but error appears:
The mbstring extension is missing. Please check your PHP configuration.
Someone who knows how to fix it?
1
Hello,
I try to access my phpMyAdmin but error appears:
The mbstring extension is missing. Please check your PHP configuration.
Someone who knows how to fix it?
Browser other questions tagged php ubuntu phpmyadmin
You are not signed in. Login or sign up in order to post.
What version of PHP installed?
– user98628
In PHP info it says: "5.6.32-1", use Ubuntu 14.04 32 bits.
– Vin
Try looking for the package in the Ubuntu repository by typing the commands in the Terminal:
sudo apt-get updateandsudo apt search mbstringSee if you find anything.– user98628
It resulted in: https://pastebin.com/NUCHLCTc
– Vin
The
php-mbstringis listed as installed. Check that thembstringis configured in PHP correctly using the command:php -m. Should appearmbstringin the listing.– user98628
Well, the command
phpis showing the error:php: symbol lookup error: php: undefined symbol: pcre_jit_exec– Vin
Looks like you’re with version 7 of PHP installed as well, right? It may be giving some conflict between the two versions. You can also try this: https://askubuntu.com/a/925161
– user98628
The apt-get command that was on the link you provided solved. Thank you.
– Vin