Can I use bbPress on a self hosted normal wp blog or is it meant only for MU?
delayedinsanity, you beauty. As far as I can see, this is the problem. I switched to using wp-load.php and the status in the header is 202 without my hack. What’s more, it corrects this issue:
https://bbpress.org/forums/topic/wpmu-284a-deep-integration-breaks-rss-feed
Many thanks.
So to sum it up. I was previously doing the following in bb-config.php for deep integration:
require_once('/var/www/vhosts/youlookfab.com/httpdocs/wp-blog-header.php');
But it broke RSS feeds and put 404 headers in my forum pages. The following seems to solve both issues:
require_once('/var/www/vhosts/youlookfab.com/httpdocs/wp-load.php');
Sam was notified a while ago about the problem. I’m betting there are more important things to worry about.
There was a plugin to allow for a threaded forum. It’s almost a year old though:
https://bbpress.org/plugins/topic/threaded-posts/
Do I need to create a new database or use the existing WP database?
Thank you.
I migrated my forum from another forum software (SMF > phpbb >bbpress), so I already had lots of posts. Whenever I want to edit a post that was made before the migration, the whole layout breaks. If it had chapters, it won’t have any chapters. If you quote an older post that the whole layout of that post breaks.
Is this a common problem? How can this be solved?
Maybe I need to run a SQL query? To update all the older posts?
The very, very first link in this thread (where it says download ‘here’) works:
http://members.lycos.co.uk/wmnkhayal/files/phpbb3tobbpress%20converter.tar.gz
but that’s the version without any fixes
Hi All, very interested in a phpbb3 to bbpress converter. Have searched all over and I keep getting linked back to this post. Any updates?
Glad to see what I am saying confirmed with independent realworld proof.
Pleased to be of service. 
BTW, just how big is your site that you require multiple db servers?
I don’t know of a single WordPress+bbPress install, other than Automattic’s that are using multiple db servers.
(unless of course you are running other apps that have heavy db use or maybe for backup replication)
It’s more for redundancy than anything else, although before we got opcode caching in and had optimised some plugins involved we were catching traffic surges when our client tweeted new posts that were making us very very glad we had that much capacity.
The Hot Topic plugin has a flaming icon – you could just replace it with an animated gif instead:
https://plugins-dev.bbpress.org/browser/hot-topic/trunk/hot-topic.png
Or just change this file name in the settings are of the plugin:
$hot_topic=”<img class=’hot_topic’ src='”.$hot_topic.”hot-topic.png’ />”;
I need a plug-in for bbpress which should do the following:
– I need a section in which topics could be hidden and also the topic starter could specify people whom he grants access to it. I.e. if a person is allowed to look through some certain topics, he can see them, if he is not allowed then he does not see them at all. Administrators naturally should see all topics.
This is how I see it – when a person starts or edits a topic he should see a button “to define access” and by pressing it a div should emerge, it should darken the main window, in which the topic starter can tick users whom he grants access (or could delete them).
Now I use your Hidden Forums, its features are not enough for me, and I’d like to receive the expanded version.
Maybe but the hot-topic plugin doesn’t have a bursting flame of fire animated gif and doesn’t work with the latest version of bbpress
Thanks. I’ll keep on trying. I’m not using wordpress though, it’s a 100% custom system integrated with bbpress. I’m sure it’ll turn out to be something stupid from my part.
µ 2.8.4a and bbPress 1.0.2, no buddyPress, I’m afraid that bug has yet to bite me. Maybe that narrows down the cause though?
All of them. Any bbPress page.
What versions of bbPress and WPMU are you running? Do you have BuddyPress installed?
Hmmm. They say talking to oneself is one of the first signs of insanity…
I just found a year old thread on this topic: https://bbpress.org/forums/topic/bbpress-wordpress-mu-or-not-leads-to-404-errors-but-pages-still-load?replies=7#post-14899
So I have a couple of questions for anyone out there:
1. Aside from the ugliness of a core hack, is there any reason my workaround is a bad idea?
2. Has anyone produced a plugin that implements Beau’s idea in the thread above?
Sounds like there are a lot of people with deep integration, so I find it really strange that this is still a problem in WPMU 2.8.4a / bbPress 1.0.2.
[Opening a new thread with a more descriptive title. The old one was here: http://bbpress.org/forums/topic/help-404-error-but-page-displays%5D
I have bbPress 1.0.2 and WPMU 2.8.4a with deep integration. Forum pages load fine in the browser, but they have a 404 status in the header, which causes a googlebot crawl error. If you have deep integration, this might be true for you too. You can use Firebug or http://web-sniffer.net/ to check.
I have posted my understanding of the problem and a workaround on the WPMU forums: http://mu.wordpress.org/forums/topic/14425?replies=1#post-83354
I think this issue will stop Google (and other search engines) from indexing your forum pages. So if you are using deep integration it might be a good idea to watch for a patch.
Use my little workaround at at your own risk.
heyho,
so i guess this is going to be my last question and i should be done now with my bbpress template .
so i need a placeholder link for normal logged in folks like
<?php if ( is_admin() yadda yadda php xy bla bla() ) : ?>
<table>
<tr>
<td>
<li><?php bb_admin_link();?></li>
</td>
</tr>
</table>
or else
<table>
<tr>
<td>
<li><?php bb_any_link();?></li>
</td>
</tr>
</table>
what kind of bbpress/php tags do i need?
thankssssss a bunch
Looks like WordPress is setting the 404 because it doesn’t recognize the bbPress page that is loading.
When the global WP object is constructed, the function WP->handle_404 calls “status_header( 404 )”.
As a workaround, I modified “handle_404” to lay off the 404 if “BB_PATH” is defined (i.e. when a bbPress page is loading). This seems to work ok.
Here’s the new “handle_404” at around line 445 in “wp-includes/classes.php”.
function handle_404() {
global $wp_query;
if ( !defined( 'BB_PATH' ) && (0 == count($wp_query->posts)) && !is_404() && !is_search() && ( $this->did_permalink || (!empty($_SERVER['QUERY_STRING']) && (false === strpos($_SERVER['REQUEST_URI'], '?'))) ) ) {
// Don't 404 for these queries if they matched an object.
if ( ( is_tag() || is_category() || is_author() ) && $wp_query->get_queried_object() ) {
if ( !is_404() )
status_header( 200 );
return;
}
$wp_query->set_404();
status_header( 404 );
nocache_headers();
} elseif ( !is_404() ) {
status_header( 200 );
}
}
Kawauso, you buddypress knowledgeable, I want to use this on my site but I don’t use bbpress registration.
It’s not too hard but it does take a while. You first have to figure out which profile you want your user to use, wordpress or bbpress.