App.php - 文件
这是我的App,php文件
'key' => env('APP_KEY'),
'cipher' => 'AES-256-CBC',
.env - 文件
这是我的.env文件
APP_ENV=local
APP_KEY=base64:CETuLOZZZi5QEEYXhyCO/O7l7fhM6LI5clvsT59cgTM=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost
DB_CONNECTION=mysql
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=ads
DB_USERNAME=root
DB_PASSWORD=null
PUSHER_APP_ID=
PUSHER_KEY=
PUSHER_SECRET=
错误是:
> RuntimeException in Encrypter.php line 43: The only supported ciphers
> are AES-128-CBC and AES-256-CBC with the correct key lengths.
开发人员请帮我解决这个问题。 感谢
答案 0 :(得分:6)
您只能输入cmd:
php artisan key:generate
答案 1 :(得分:5)
我这样做是因为我跑php artisan key:generate
。然后我将输出复制到括号中,并将 .env文件放入 APP_KEY = base64:keygoesherenotpostingmyrealkey 。我做了php artisan config:clear
,然后是php artisan config:cache
,事情正在发挥作用!
答案 2 :(得分:0)
检查以确保.env
文件在APP_KEY
中具有价值,如果没有,您只需 创建新项目 或 < em>克隆项目 ,您需要在控制台或终端中运行php artisan key:generate
。