乐趣区

关于php:问题合集Problem-with-the-SSL-CA-cert-path-access-rights

问题形容

php 中调用 curl 报错:Problem with the SSL CA cert (path? access rights?)

问题排查及解决方案

1.curl 申请是否有设置代理,是否因为代理造成的(例如代理 ip 等)

// 示例:设置了代理 ip
curl_setopt($ch, CURLOPT_PROXY, '127.0.0.1:8088');

解决方案:删掉代理 ip 的设置代码即可。

2. 查看 php 扩大,是否曾经装置 curl 扩大,openssl 等
解决方案:装置对应扩大,重启 PHP,从新加载扩大。

3. 判断是不是 ca 证书异样,例如证书没有装置、没有更新、目录没有权限等
解决方案:下载(更新)ca 包,重启 PHP,从新加载扩大。

yum -y install ca-certificates

pkill php-fpm

/usr/local/php/sbin/php-fpm
退出移动版