Call to undefined function mb_internal_encoding()

2019-06-12 21:58发布

问题:

When I upload my Laravel website and configured in godaddy VPS server I started getting following error

Fatal error: Call to undefined function Illuminate\Foundation\Bootstrap\mb_internal_encoding() in /home/wwwideportal/ideinvoice/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php on line 43

I googled about it and got to know that Its a problem in php.ini file of my current hosting so , I created another php.ini file and uploaded in the public_html folder

then I did phpinfo in my browser and checked its showing that the file has been uploaded fine for php.ini and I have placed following code in it

extension=php_mbstring.dll

but still I am getting the same error

Here is my website link

Can any one tell me if I am missing any thing

Thanks in advance.

回答1:

As you can see it from http://ide-portal.com/phpinfo.php,

mbstring module is not installed on you server.

If it was installed, it would be displayed on your phpinfo page like that:

Please follow mbstring installation manual to install it on your system.

Thanks