码迷,mamicode.com
首页 > 其他好文 > 详细

Laravel 错误处理

时间:2019-01-24 16:37:10      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:3.1   错误   setting   地址   rect   defaults   错误提示   修改   compose   

错误提示:cURL error 60: SSL certificate problem: unable to get local issuer certificate
解决方案:修改文件,重启队列即可
D:\wamp\www\myblog\vendor\guzzlehttp\guzzle\src\Client.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:\wamp\bin\php\php7.3.1\extras\ssl\cacert.pem',
            'cookies'         => false
        ];

Laravel 错误处理

标签:3.1   错误   setting   地址   rect   defaults   错误提示   修改   compose   

原文地址:https://www.cnblogs.com/qq917937712/p/10314802.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!