我的应用效果很好。但是,如果我碰巧多次提出请求,无论是ajax还是随机页面,我都会收到以下错误:
local.ERROR: exception 'RuntimeException' with message 'No supported encrypter found. The cipher and / or key length are invalid.' in C:\wamp\www\application\vendor\laravel\framework\src\Illuminate\Encryption\EncryptionServiceProvider.php:29
这在本地和生产环境中随机发生。
我目前的设置:
'key' => env('APP_KEY', 'SomeRandomString'),
'cipher' => 'AES-256-CBC',
.env文件包含:APP_KEY=eyckMXzoR8AeurnkpBBQ8k2Ryp0zo21l
我尝试过:php artisan key:generate
但问题仍然存在。有没有其他人有类似的问题?
答案 0 :(得分:0)
复制.env文件中的APP_KEY
值,并将其用于app.php
文件,同时替换值SomeRandomString
。