Vivek Padhye
Vivek Padhye

Reputation: 711

laravel 5.1 + phpdesktop gives fatal error: Call to undefined function mb_internal_encoding()

I am trying to use Laravel 5.1 with phpdesktop (https://github.com/cztomczak/phpdesktop). I configured everything according to instructions but I get a fatal error for the first page itself.

Fatal error: Call to undefined function Illuminate\Foundation\Bootstrap\mb_internal_encoding() in H:\app\laravel\www\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\LoadConfiguration.php on line 43

I am unable to solve this problem. Both PHPDesktop and laravel versions are latest ones. Error when laravel 5.1 is used with phpdesktop

Upvotes: 1

Views: 637

Answers (1)

Basit
Basit

Reputation: 971

You need to install mbstring extension for PHP.

Check Enable mbstring extension on Windows

Upvotes: 1

Related Questions