Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Takanudo

    (@takanudo)

    Try unchecking “Verify SSL Peer” on the settings page for the plugin.

    Thread Starter herbst

    (@herbst)

    Thank you for the suggestion. Unfortunately it still didn’t fix the problem.

    So the wordpress site I’ve created is on behalf of a client, and I want the client’s facebook posts to show on the wordpress site.

    Other ideas?

    Plugin Author Takanudo

    (@takanudo)

    That’s strange. Are you still getting a [35] ssl connect error?

    Thread Starter herbst

    (@herbst)

    Yes

    Plugin Author Takanudo

    (@takanudo)

    If Verify SSL Peer is unchecked, it shouldn’t be trying to connect with SSL. Just to be clear, Verify SSL Peer is NOT checked and then you click “Save Changes”. What happens when you do that?

    Thread Starter herbst

    (@herbst)

    Correct. Verify SSL is NOT checked. But when the widget is activated, it still says [35] ssl connect error.

    On the plugin settings, I’ve entered
    Facebook ID
    App ID
    App Secret

    And Verify SSL is NOT checked.

    Plugin Author Takanudo

    (@takanudo)

    When you click “Save Changes” what happens? I would have thought you would have received an error message. I guess we can try to do this manually.

    Try this:

    1. Open ‘/wp-content/plugins/jsl3-facebook-wall-feed/php/class-jsl3-facebook-wall-feed.php’
    2. Lines 879 through 880 are:
      curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER,
      $dev_options[ 'verify' ] );
    3. Change them to the following:
      curl_setopt( $ch, CURLOPT_SSL_VERIFYHOST, FALSE );
      curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
    4. Save the file.
    5. Open ‘/wp-content/plugins/jsl3-facebook-wall-feed/php/class-uki-facebook-wall-feed.php’
    6. Line 417 is:
      curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, $this->verify );
    7. Change it to the following:
      curl_setopt( $ch, CURLOPT_SSL_VERIFYHOST, FALSE );
      curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
    8. Save the file.
    9. Click “Save Changes” on the settings page for the plugin.
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘[35] ssl connect error’ is closed to new replies.