Function call undefined Illuminate \ Encryption \ openssl_decrypt ()

I use xampp and windows along with laravel, everything works fine, but when I finished work and turned xampp and tried to open my work this morning, this is what I get:

FatalThrowableError in Encrypter.php line 100: Fatal error: Call to undefined function Illuminate\Encryption\openssl_decrypt() 

Encrypter.php is a standard laravel file, and I didnโ€™t even touch it. My extension is included.

extension = php_openssl.dll

What could be wrong?

+5
source share
2 answers

If you started XAMPP and restarted it, it might be worth running the composer install command again or just running composer update to ensure that all dependencies load correctly.

+1
source
 composer install 

Failed to fix the problem, but the following:

 composer update 
0
source

Source: https://habr.com/ru/post/1245557/


All Articles