Laravel production.ERROR: RuntimeException: The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths.
Laravel 报错 Laravel production.ERROR: RuntimeException: The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths.
看了 宏玄的专栏
Laravel 出现"RuntimeException inEncrypter.php line 43: The only
supported ciphers are AES-128-CBC and AES-256-CBC with the correct key
lengths."问题的解决办法首先在cmd命令行下定位到项目所在的根目录下,接着输入:
[plain] view plain copy 在CODE上查看代码片派生到我的代码片 php artisan key:generate
效果:这时候项目根目录下的.env文件里的APP_KEY应该会有值了:
若没有,则将上一步生成的key值输入进去即可。
得知在 .env
文件中没有配置 APP_KEY
的情况会出现上述错误
APP_KEY=base64:xxxxxxxxxxxxx=
而我的情况是压根没有 .env
文件. 我的项目是从项目组远程git仓库中pull下来的自然没有 .env
文件了.
补上了 .env
文件问题就解决了, 另外使用
php artisan key:generate
这个命令可以生成 APP_KEY
.
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。