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?
That’s strange. Are you still getting a [35] ssl connect error?
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.
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:
- Open ‘/wp-content/plugins/jsl3-facebook-wall-feed/php/class-jsl3-facebook-wall-feed.php’
- Lines 879 through 880 are:
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER,
$dev_options[ 'verify' ] );
- Change them to the following:
curl_setopt( $ch, CURLOPT_SSL_VERIFYHOST, FALSE );
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
- Save the file.
- Open ‘/wp-content/plugins/jsl3-facebook-wall-feed/php/class-uki-facebook-wall-feed.php’
- Line 417 is:
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, $this->verify );
- Change it to the following:
curl_setopt( $ch, CURLOPT_SSL_VERIFYHOST, FALSE );
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
- Save the file.
- Click “Save Changes” on the settings page for the plugin.