Leave a Reply

1 comment

  1. I have found the solution of it.
    In my case, I have just disable the SSL certificate in User.php file in fb_connect method.

    // Enable SSL verification
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, $enable_ssl);

    change to
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

    I am using the development server with prefix “http://” instead of “https://”.