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

后端 未结 21 1920
暖寄归人
暖寄归人 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:06

    I got stuck on this problem as well. It turned out that I had the path to my certificate set incorrectly in my php.ini file. Forgot the .txt extension.

    What I had:

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

    What I changed it to:

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

    Hope this helps.

提交回复
热议问题