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

后端 未结 14 1677
一个人的身影
一个人的身影 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:32

    I also had this issue. I check my environment variable value for "APP_KEY" using echo $APP_KEY For me it was "lumen" which was set for another lumen project and that's why it was not working.

    I updated "APP_KEY" value using export APP_KEY=[you app_key value from .env file] and cleared cache php artisan config:cache and it worked for me.

提交回复
热议问题