Laravel 5 Socialite - cURL error 77: error setting certificate verify locations

后端 未结 21 1911
暖寄归人
暖寄归人 2020-12-02 18:36

I am using socialite in Laravel 5 to setup facebook login. I followed the instructions carefully until I got stuck with the following error

cURL error 60: SS         


        
相关标签:
21条回答
  • 2020-12-02 19:32

    Checkout double quote on php.ini file: if you copied and past from the Web maybe you got wrong double quote:

    ”C:\xampp\php\cacert.pem.txt”

    instead of

    "C:\xampp\php\cacert.pem.txt"

    0 讨论(0)
  • 2020-12-02 19:32

    this worked for me

    curl.cainfo = "C:\xampp\php\cacert.pem.txt"
    

    hope it helps some one :)

    0 讨论(0)
  • 2020-12-02 19:33

    If it is related to git:

    git config --global http.sslverify "false"
    

    will solve the problem.

    0 讨论(0)
提交回复
热议问题