Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: BP Avatars in bbPress


John James Jacoby
Keymaster

@johnjamesjacoby

For deep integration I’ve found that using the absolute path to the file works the best. I use this in bb-config.php…

if ( !defined('ABSPATH') & !defined('XMLRPC_REQUEST')) {
include_once( '/homepages/8/d149961498/htdocs/delsolownersclub/wp-blog-header.php' );
}

Now I know what you’re going to say, and I’ve also tried it with and without the second check for XMLRPC_REQUEST with what seems to be little or no change. Remember before in the other topic, because the XMLRPC is including both ways, which means including both plugins, it was getting an error message of duplicating functions, even with the other two checks in there.

Basically if you’re in bbPress, it includes WP, which includes XMLRPC, which then continues to load bbPress which tries to load XMLRPC. When the XMLRPC request goes through from BBP to WP, it hits up a new BBP page, which loads WP again, to do all the PW checks, and I feel like all of these circular inclusions and requests are spinning me around and I’m chasing my tail. What I’m trying to do is avoid deep integration if an XMLRPC request is taking place, that way BBP is just BBP when XMLRPC is taking place.

Is it safe to delete all the bbpress_live entries in the database too? What should I all delete from the DB to start from square one and give this another try?

Skip to toolbar