Viewing 15 replies - 1 through 15 (of 46 total)
  • Exactly the same here..

    Thread Starter gcoghill

    (@gcoghill)

    OK so it’s not just me then, that’s good to know. I noticed the MailChimp “app” on FB does indeed get installed on FB. I tried deleting that and re-approving, but same error.

    I also have the red reminders telling me to update my settings. I do, but I still get the reminders on every page in the Admin of my blog.

    It seems that they don’t connect at all.

    I’m unsure whether it’s the theme I’m using or another plugin I’m using but I don’t believe I have one that’s likely to conflict.

    Also having issues with Facebook. The connect process never finishes. Twitter works like a charm, though.

    Thread Starter gcoghill

    (@gcoghill)

    @holling Same here, Twitter worked without a hitch, and I love the plugin. Want those FB folks to be able to do the same.

    Ah, Facebook.

    Same here. Anybody had any luck with this issue?

    Thread Starter gcoghill

    (@gcoghill)

    I’m guessing it’s either a plugin conflict or a glitch in the code. I don’t have anything else connecting to FB save for the Like/Send buttons on the blog. But I do have a problem with plugins ??

    Anybody test this on a vanilla install?

    I’ve the same problem. Everything is fine if I connect to Twitter, but it is impossible to FB

    Hi folks! yesterday, for the first time I tried this plugin and I met the same problem. A shame, because the plugin is pretty good. So I decided to fix it and I did!

    This is my solution:
    Have to patch the following file:
    wp-content/plugins/social/social.php
    Replace this code (lines 2275-2300):

    private function social_kses($object) {
    	if (($is_object = is_object($object))) {
    		$_object = new stdClass;
    	}
    	else {
    		$_object = array();
    	}
    
    	foreach($object as $key => $val) {
    		if (is_object($val)) {
    			$val = $this->social_kses($val);
    		}
    		else if (is_array($val)) {
    			$val = $this->social_kses($val);
    		}
    		else {
    			$val = wp_kses($val, array());
    		}
    		if ($is_object) {
    			$_object->$key = $val;
    		}
    		else {
    			$_object[$key] = $val;
    		}
    	}
    	return $_object;
    }

    And presto! Greetings to all!!!!!!!!!!

    Now I’ve just got to figure out where it begins!

    ttj90; in the file wp-content/plugins/social/social.php, replace the code from line 2275 to 2300 for this:

    private function social_kses($object) {
    	if (($is_object = is_object($object))) {
    		$_object = new stdClass;
    	}
    	else {
    		$_object = array();
    	}
    
    	foreach($object as $key => $val) {
    		if (is_object($val)) {
    			$val = $this->social_kses($val);
    		}
    		else if (is_array($val)) {
    			$val = $this->social_kses($val);
    		}
    		else {
    			$val = wp_kses($val, array());
    		}
    		if ($is_object) {
    			$_object->$key = $val;
    		}
    		else {
    			$_object[$key] = $val;
    		}
    	}
    	return $_object;
    }

    Any tips on how to find the line 2275!?
    I’m quite the inept developer

    Thread Starter gcoghill

    (@gcoghill)

    Awesome! Will give this a try tomorrow when I get home. Thanks!

    Using a tool such as notepad++
    Here is the download link “

    Sorry; Este es el enlace de descarga

Viewing 15 replies - 1 through 15 (of 46 total)
  • The topic ‘[Plugin: Social] Facebook connect error’ is closed to new replies.