Laravel 報錯 Laravel production.ERROR: RuntimeException: The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths.
php
看了 宏玄的專欄git
Laravel 出現"RuntimeException inEncrypter.php line 43: The only
supported ciphers are AES-128-CBC and AES-256-CBC with the correct key
lengths."問題的解決辦法.net首先在cmd命令行下定位到項目所在的根目錄下,接着輸入:命令行
[plain] view plain copy 在CODE上查看代碼片派生到個人代碼片 php artisan key:generate
效果:code這時候項目根目錄下的.env文件裏的APP_KEY應該會有值了:blog
若沒有,則將上一步生成的key值輸入進去便可。ip
得知在 .env
文件中沒有配置 APP_KEY
的狀況會出現上述錯誤ci
APP_KEY=base64:xxxxxxxxxxxxx=
而個人狀況是壓根沒有 .env
文件. 個人項目是從項目組遠程git倉庫中pull下來的天然沒有 .env
文件了.get
補上了 .env
文件問題就解決了, 另外使用cmd
php artisan key:generate
這個命令能夠生成 APP_KEY
.