Sudhir Kumar Singh
Sudhir Kumar Singh

Reputation: 11

laravel installation got error

This error occurred in compiled.php line 7772:

at EncryptionServiceProvider->getEncrypterForKeyAndCipher('SomeRandomString', 'AES-256-CBC') in compiled.php line 7762
at EncryptionServiceProvider->Illuminate\Encryption\{closure}(object(Application), array()) in compiled.php line 1353
at Container->build(object(Closure), array()) in compiled.php line 1309

Upvotes: 1

Views: 66

Answers (1)

Iftikhar uddin
Iftikhar uddin

Reputation: 3182

Try

php artisan config:clear

And after that generate a new key for your application via

php artisan key:generate

Upvotes: 1

Related Questions