我写了一个简单的实时聊天对话并运行良好,但在某些情况下,ajax请求获取错误500(内部服务器错误)并且请求未完成
在Laravel.log中记录错误:
2017-02-28 16:49:54] production.ERROR: exception 'RuntimeException' with message 'The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths.' in D:\wamp\www\***\vendor\laravel\framework\src\Illuminate\Encryption\Encrypter.php:43
应用程序密钥已设置,我的ajax请求运行良好,但有时例如在连续5-7次请求后发生此错误
问题出在哪里?
答案 0 :(得分:1)
安装Laravel后,您应该做的下一步是将应用程序密钥设置为随机字符串。如果您通过Composer或Laravel安装程序安装了Laravel,则php artisan key:generate
命令已为您设置了此密钥。