Fatal error: Call to undefined function mb_internal_encoding() under Ubuntu Linux #249
-
host:/opt/lampp/htdocs/test/yellow-master$ php yellow.php build /opt/lampp/htdocs/test/yellow-master/static |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
Thanks for the bug report. Which operating system do you use? |
Beta Was this translation helpful? Give feedback.
-
PHP 7.0.18 |
Beta Was this translation helpful? Give feedback.
-
It looks like the
If it's still not working, you might need to enable it manually:
Hope this helps. 😄 |
Beta Was this translation helpful? Give feedback.
-
Yes install of mbstring resolved the problem. Tack så mycket! |
Beta Was this translation helpful? Give feedback.
-
Good to hear. I added a better error message to Yellow, to help people with the installation. Let us know if you find more bugs. |
Beta Was this translation helpful? Give feedback.
It looks like the
mbstring
extension is missing or not enabled. Here's how to install it:sudo apt-get install php-mbstring php7.0-mbstring
If it's still not working, you might need to enable it manually:
sudo phpenmod mbstring
Hope this helps. 😄