The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths. laravel 5.3

后端 未结 14 1638
一个人的身影
一个人的身影 2020-12-01 01:09

I installed a new fresh copy of Laravel 5.3 using composer but I\'m getting this error:

The only supported ciphers are AES-128-CBC and AES-256-CBC wit

14条回答
  •  春和景丽
    2020-12-01 01:36

    You need to have .env on your appication folder then run:

    $ php artisan key:generate
    

    If you don't have .env copy from .env.example:

    $ cp .env.example .env
    

提交回复
热议问题