Re: Forum Integration: HELPING HINTS
Fix for bb-config.php when using “deep integration”
How to currently, correctly include WordPress within bbPress and NOT throw a 404 in IE.
Add to beginning of bb-config.php:
if ( !defined('ABSPATH') & !defined('XMLRPC_REQUEST')) {
define('WP_USE_THEMES', false);
include_once( '/absolute/path/to/yourdomain.com/wp-blog-header.php' );
header("HTTP/1.1 200 OK");
header("Status: 200 All rosy");
}
@Matt, I think that if it’s partially working, than chances are something is amiss somewhere. Are you using deep integration or no?