我要安装symfony3,我正在使用此链接https://openclassrooms.com/courses/developpez-votre-site-web-avec-le-framework-symfony/symfony-un-framework-php
当我要创建一个新项目时,出现此错误 curl:(60)SSL证书:无法获得本地颁发者证书
所以我试图通过遵循这两个解决方案来解决问题!
curl: (60) SSL certificate : unable to get local issuer certificate
https://openclassrooms.com/forum/sujet/symfony-3-erreur-installation?page=2
但总是有错误!!
现在的错误:
C:\wamp\www>php symfony.phar new Symfony
[GuzzleHttp\Exception\RequestException]
cURL error 77: error setting certificate verify locations:
CAfile: C:/wamp/bin/php/cacert.pem
CApath: none
[GuzzleHttp\Ring\Exception\RingException]
cURL error 77: error setting certificate verify locations:
CAfile: C:/wamp/bin/php/cacert.pem
CApath: none
new <directory> [<version>]
我如何才能让它发挥作用?
cacert.pem文件我打开链接https://curl.haxx.se/ca/cacert.pem然后右键单击保存文件(文件类型是.txt)文件类型是否正确?
< / LI>答案 0 :(得分:1)
将文件另存为cacert.pem
,而不是cacert.pem.txt
。
为此,在保存文件时,在保存对话框中文件名下的文件类型中选择“全部(。)”而不是“文本文档(* .txt)”。 / p>
或者,如果您已将其作为txt文件下载,请在文件夹C:\wamp\bin\php\
中打开命令行,然后键入此命令以使用正确的扩展名重命名该文件:
move cacert.pem.txt cacert.pem
答案 1 :(得分:0)