Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: BuddyBar for bbPress

There is a bug in the deep integration script

if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {

define( ‘WP_USE_THEMES’, false );

include_once( ‘/your/absolute/path/to/wordpress/wp-blog-header.php’ );

header( “HTTP/1.1 200 OK” );

header( “Status: 200 All rosy” );

It looks like everything is working fine, but a user from the german buddypress forum ( mt ) find out, that wordpress overwrites the buddypress header and so there comes header 200 back and often it is a 302 or even a 404.

this is the new script from mt.

if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {

define( ‘WP_USE_THEMES’, false );

include_once( ‘/your/absolute/path/to/wordpress/wp-config.php’ );

$wp->init();

$wp->register_globals();

I post it hire because I think it must be interesting for everyone. In fact it is really important for seo and the german forum is far away from hire…

Skip to toolbar