Re: BP Avatars in bbPress
My process above was using deep integration. Even if an XMLRPC request looks for the xmlrpc.php in the bbpress install directory, it still loads bb-load.php, which loads bb-config.php, which loads all of wordpress before proceeding to load the remainder of bbpress. If an XMLRPC request is being made from buddypress to bbpress (like when viewing a group forum from within BP), I don’t want to reload all of buddypress again invisibly, if that makes sense?
That’s why I did…
if ( !defined('ABSPATH') & !defined('XMLRPC_REQUEST')) {
in bb-config.php, to prevent reloading ALL of wpmu and bp just for a quick xmlrpc peek.
What I don’t get is why it works in every version but this new one.