Still, the only thing i can think of that is causing this is some sort of incompatibility between WordPress 2.3.3 and BBpress 0.8.3.1.
Joke:
A man calls his doctor’s office to make an urgent appointment. He argues with the secretary and finally the doctor agrees to make a few minutes to see him. The man arrives, clearly distressed. He tells the doctor, whenever I push on my bellybutton, I faint, my nose bleeds, and my feet go numb for an hour. The doctor turns pale and rushes the man to the hospital, where the man is kept for a week while all kinds of tests are run by numerous specialists. Finally, the doctor returns, and the man begs him to give a diagnosis. The doctor says, I don’t know what’s wrong with you, but I have found a cure. The man, desperate, begs hims to continue. The doctor says, “Don’t do that anymore.”
Regarding incompatibilities between WP and bbP, see this:
https://bbpress.org/forums/topic/bbpress-038-wordpress-integration#post-13713
There *are* incompatibilities right now. Things are in flux.
There’s little reason to run WP *inside* bbPress and it only makes for headaches. Running them integrated but standalone makes each of them faster and has a side benefit – one can work while the other is down for some reason.
Virtually any of the data you might want from WP can be accessed with a few creative PHP/mysql calls from bbPress. If you let me know specifically what you are trying to do, I will try to help.
I think i’m going to take your advice ck and not include the call to wp in bbpress.
Hi, don’t know whether this is solved or not… I am using wordpress 2.3.3 as a Blog section on one of my clients websites. I started getting the IE7 404 error on all my pages after I added almost pretty permalinks to my pages…It did seems to go when I removed the blog-header require statement, but obviously this didnt fix the problem! I set the permalinks back to default in wordpress and the 404 errors stopped! Might be worth trying if you are using pretty permas?…Let me know if it works!
This is an old post, but I found a GREAT fix for this issue detailed in this article >> http://www.adrogen.com/blog/wordpress-wp-blog-headerphp-causes-404-in-ie/
The code I finally replaced the “wp-blog-header.php” is here.
/***********************************************************************
* Blog Header Error Fix *
***********************************************************************/
// Include WordPress functionality
$currDir = dirname(getcwd());
// Make sure this isn’t install or admin (go up if it is)
if(!file_exists(“$currDir/wp-config.php”))
$currDir = dirname($currDir);
if(!file_exists(“$currDir/wp-config.php”))
die(“Cannot find WordPress integration files.”);
// ***** OLD Blog Header Line *****
//require_once(“$currDir/wp-blog-header.php”);
// ***** New WP Integration stuff *****
require(“$currDir/wp-config.php”);
$wp->init();
$wp->parse_request();
$wp->query_posts();
$wp->register_globals();
/***********************************************************************/
Made my life ALOT better….