Solution on Windows
In php.ini, enable the mbstring library: remove the semicolon before extension=php_mbstring.dll.
Solution on Linux
First, install the
php-mbstringlibrary:1yum install php-mbstringThen, edit the
/etc/php.inifile and add the following line:1extension=mbstring.soSave and restart the
httpdservice:1service httpd restart