Hashir
Hashir

Reputation: 95

Call to undefined function Illuminate\Foundation\Bootstrap\ini_set()

I deployed my Laravel project on server. I am facing this issue. Ran composer dump-autoload and composer update --no-scripts commands but the problem remain same. This laravel v-8.83 and php v-8.1 project .

Here is the screenshot of error message what I get

Upvotes: 0

Views: 875

Answers (1)

aymcg31
aymcg31

Reputation: 889

It has to do with PHP.

You have to enable mbstring extension in php.ini.

You must have a line like this in it : ;extension = php_mbstring.dll

Just uncomment by removing the ;

Upvotes: 2

Related Questions