Re: BP Avatars in bbPress
Burt…
When accessing the forums using deep integration, with no modifications to your updated plugin…
Fatal error: Cannot redeclare class IXR_IntrospectionServer in /homepages/8/d149961498/htdocs/delsolownersclub/discussions/bb-includes/backpress/class.ixr.php on line 860
Think of the loop that’s happening… bbPress loads WordPress, loads ixr, which continues to load bbPress. I really do think both sides need to check to see if the other is included to ensure this doesn’t happen.
Going back to oci_bp_group_forums.php and putting
if (!defined(BBDB_NAME))
require_once(ABSPATH . WPINC . '/class-IXR.php');
and then back to oci_bb_group_forums.php and putting
if (defined(BACKPRESS_PATH))
require_once( BACKPRESS_PATH . '/class.ixr.php' );
Fixes this.
Let me find where they are declared and try to walk you through the deep integration dance. It’s a pain in the butt, but it works. I don’t see any other way to get things like the BuddyBar and all of the BP functions over to bbPress without deep integration.