Laravel 错误处理
Posted 懒牛拉车
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Laravel 错误处理相关的知识,希望对你有一定的参考价值。
错误提示:cURL error 60: SSL certificate problem: unable to get local issuer certificate
解决方案:修改文件,重启队列即可
D:wampwwwmyblogvendorguzzlehttpguzzlesrcClient.php 大概160行
$defaults = [
'allow_redirects' => RedirectMiddleware::$defaultSettings,
'http_errors' => true,
'decode_content' => true,
// 'verify' => true,
'verify' => base_path().'/vendor/composer/ca-bundle/res/cacert.pem',
'cookies' => false
];
如果项目里面没有cacert.pem文件可以去下载一个,然后放到php目录
下载地址:https://curl.haxx.se/docs/caextract.html
$defaults = [
'allow_redirects' => RedirectMiddleware::$defaultSettings,
'http_errors' => true,
'decode_content' => true,
// 'verify' => true,
'verify' => 'D:wampinphpphp7.3.1extrassslcacert.pem',
'cookies' => false
];
以上是关于Laravel 错误处理的主要内容,如果未能解决你的问题,请参考以下文章
Laravel - 无法处理 RequestException(Guzzle + MailChimp)
脚本 php artisan 优化处理使用 laravel 5.4 返回的 post-update-cmd 事件,错误代码为 1