I installed Laravel and uploaded it to git now I downloaded it But when I'm trying to enter the site I get this error:
The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths.
I found this answer: The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths. laravel 5.3
My config/app.php
'key' => env('APP_KEY'),
'cipher' => env('APP_KEY'),
I run
php artisan key:generate
my ENV
file:
APP_KEY=base64:zJQUL0Kuwhb2JL6L7IJ+1UO7IUSQSw2Td40F9LNABfE=
I run composer update
but still the same error... I tried to clear config and cache it but that didn't help.
What else can I do?