cURL没有在php.ini中找到Cert文件

时间:2016-09-23 13:06:48

标签: php ssl curl ssl-certificate

当我尝试使用PHP SDK将图像上传到我的Parse-Server时出现以下问题。 所以第一个错误是

SSL certificate problem: unable to get local issuer certificate

经过一些研究后我发现我必须从我这里把pem文件放到我的服务器中

https://stackoverflow.com/a/16495053/3795594

所以我从这里下载了这个pem文件

https://curl.haxx.se/ca/cacert.pem

我把它放在我的CentOS服务器的这个位置。

/etc/pki/tls/certs

然后我去了我的php.ini文件的位置usr/local/lib/,在[PHP]下面的第二行我插入了这一行

curl.cainfo = "/etc/pki/tls/certs/cacert.pem.txt"

重新启动APACHE 现在我收到了这个错误。

error setting certificate verify locations: CAfile: /etc/pki/tls/certs/cacert.pem.txt CApath: none Failed to update your Event, with error message: Bad Request

任何解决方法?

PHP Version 5.6.21

0 个答案:

没有答案