Laravel 中间件抛出 "No supported encrypter found" 消息
Laravel middleware throw a "No supported encrypter found" message
在laravel 5.2
简单地说,这段代码效果很好:
Route::get('/', function () {
if(Auth::guest())
{
return Redirect::to('login');
}
else
{
return view('index');
}
});
并且此代码不起作用并抛出 "No supported encrypter found. The cipher and / or key length are invalid."
的消息
Route::group(['middleware' => ['web']], function () {
//
Route::get('/',function(){
return view('index');
})->middleware('auth');
});
即使我测试了 laravel 的默认 artisan make:auth,它仍然显示相同的消息。
我认为这不是关键,因为我可以使用第一种方法登录但不能使用中间件。
求助...
更新:
密钥在 .env 文件和 config/app.php 文件中都是相同的 32 个字符密钥,并且 'cipher' => 'AES-256-CBC'
更新 2
在帮助并检查 Illuminate/Encryption/EncryptionServiceProvider.php 之后,我发现:
$config = $app->make('config')->get('app');
$key = $config['key'];
$cipher = $config['cipher'];
当我试图回显 $cipher 值时,我发现它是 'AES-256-CBC' 就像在配置文件中一样,但 $key 变量为空。那么为什么它不从配置文件或 .env 文件中读取密钥呢???
在 App.php 文件中是这样的:
'key' => env('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
应该是
'key' => env('APP_KEY', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
或
'key' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
在laravel 5.2 简单地说,这段代码效果很好:
Route::get('/', function () {
if(Auth::guest())
{
return Redirect::to('login');
}
else
{
return view('index');
}
});
并且此代码不起作用并抛出 "No supported encrypter found. The cipher and / or key length are invalid."
的消息Route::group(['middleware' => ['web']], function () {
//
Route::get('/',function(){
return view('index');
})->middleware('auth');
});
即使我测试了 laravel 的默认 artisan make:auth,它仍然显示相同的消息。 我认为这不是关键,因为我可以使用第一种方法登录但不能使用中间件。 求助...
更新: 密钥在 .env 文件和 config/app.php 文件中都是相同的 32 个字符密钥,并且 'cipher' => 'AES-256-CBC'
更新 2
在帮助并检查 Illuminate/Encryption/EncryptionServiceProvider.php 之后,我发现:
$config = $app->make('config')->get('app');
$key = $config['key'];
$cipher = $config['cipher'];
当我试图回显 $cipher 值时,我发现它是 'AES-256-CBC' 就像在配置文件中一样,但 $key 变量为空。那么为什么它不从配置文件或 .env 文件中读取密钥呢???
在 App.php 文件中是这样的:
'key' => env('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
应该是
'key' => env('APP_KEY', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
或
'key' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'