Thanks.
I tried that code.
The result:
http://domain.com now goes nicely to http://www.domain.com
If I encounter problems, I’ll let it be known.
Add
RewriteCond %{HTTP_HOST} !^www. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [L,R=301]
to your .htaccess (right under RewriteEngine On)
Okay, I just ran this plugin (https://bbpress.org/plugins/topic/fix-admin-access/) on WP and it worked. I now get the ‘ADMIN’ link in the forums when logged in 
There’s another problem now though, all the bbPress admin panel graphics are gone, leaving just black-on-white text in a messy layout.. Here’s what i get: http://img41.imageshack.us/img41/6884/bilde2i.png
Any genious sollutions for this?
The folder called bbpm
should be in my-plugins.
I thought the file was written as sitemap.bb.xml originally, which would not overwrite your sitemap.xml file, correct?
Also, that $sitemap_file is normally defined with server $_SERVER['DOCUMENT_ROOT']
, so you should be using a filesystem path, not a URL as you have done. Something like /var/www/you/forum/sitemap.xml
instead of the url with HTTP.
Ben L. is that how it works? Out of the box like that?
Cause I have no knowledge on how to recode the php.
I’m having a similiar problem. I’m using bbpress integrated with our WordPress site. On the front-page.php page, in the “Latest Discussions” I’m using this bit of code:
<?php bb_topic_labels(); ?> <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a><?php topic_page_links(); ?> by <a href="/wedding-chat/profile/<?php topic_author(); ?>" ><?php topic_author(); ?></a>
Which gives me the users name, and a link to their profile page. The problem is that the link is using their username, which if the user has spaces or dashes, poses problems. I need to get the user_nicename or display_name value from that users record. How do I do this in bbPress? I’ve dug around, but I don’t see any information on the topic.
Thanks!
This can be done via a plugin. I have done this myself with a old plugin of mine. Don’t have the code with me atm (at work)
Can someone explain how I can pull the total number of bbpress posts made and display them in wordpress theme, and also a harder one to solve, how do I get the total number of posts for a user in bbpress and display that in the users wordpress author.php?
I’ve got intergration happening with shared login/registrations, tables in same DB.
Thanks for any help
John, sure there is no guarantee, but the bbpress development over the last 2 years was never so active as for wordpress.
My Forum is ~ 2years old and I updated only once (to 1.02) 
and at the end we have to trust Matt
yeah there is a great chance to trash your database
@John,
I’m not talking about the plugin but about a core feature, I think email subscription is one of the secrets why forums and blogs succeed. My remark is just about why some “mail filter” is very important.
PS. If I send mail messages from websites I use always a SPF record
Hi 
I recenetly set up a forum at piloten.no/forum. I think i managed to get the cookies and all synced, because when i log in to my wp-admin i get logged inn at my forums as well. Only problem is that i can’t fint the bb-admin panel. It is supposed to be on /forum/bb-admin but that just redirects me to /forum.
When i’m logged in at the forums i cannot find the ‘ADMIN’ link that used to be there before…
http://bildr.no/image/561660.jpeg
The svn is just short for “subversion” which is version control software you can use for checking out code. It’s still a bbpress.org domain: it’s perfectly safe. Just a subdomain.
btw, i added favorite edit link from bp profile with this: <?php if($current_displayed_user == $current_loggedin_user) { ?> (<a href="/forum/profile.php?id=<?php echo $current_loggedin_user; ?>&tab=favorites">Edit Forum Favorites</a>) <?php } ?>
I see, then I’ll wait for a top-level domain.
Thanks
It is supported, and will continue to grow. It will eventually become a canonical plugin for WordPress. 
I also thought so at first, but I really love this software – so I’m sticking with it, no matter what.
I just read this at the following URL, http://bbshowcase.org/forums/. I am not sure what it means or I may be behind the times. Can someone explain the status of bbPress to me and for those of us currently working with it.
” The bbPress Showcase has been discontinued.
The removal of Sam Bauers and the halting of bbpress.org 2.0
was a clear and final sign that there is no interest in allowing
bbPress to become a mature, robust program and community.
By now bbPress 1.5 could have been in alpha but instead
bbPress development has been deliberately stagnated,
which should be a very alarming warning to everyone.
In addition, bbShowcase had only six donations in 2009,
which indicated to me there was no interest in my work.
My code will remain on bbpress.org as open source GPL
for those that wish to use it, however I caution you to
consider bbPress’s lack of leadership before continuing to use it. “
Thanks and I appreciate the update.
Toni
Sorry that should have been directed at citizenkeith:
“_ck_’s bbpress signatures and BBcode Buttons Toolbar plugins”
I just wanted to look at those two plugins and didn’t really feel like searching for them.
Negative. If I point it at /pub/bb-admin/ (the address suggested by the Admin link), the browser gets redirected to /pub/ straight away. If I point at /pub/bb-admin/ without having logged in first, I get a login screen, then after login the browser jumps back to /pub/. Or sometimes again gives the 404.
My installation does not have a .htaccess file, it never had. My config lives in the Apache site config and has just this (next to lots of other unsuspect stuff):
RedirectMatch ^/$ /pub/
I don’t think this is the problem. However, 0.9 may have assumed a config that I never had, which 1.0 requires. Do you have a suggestion?
Jeroen
Here is a list of the tables that are created in 1.0. Here I changed the table prefix from bb_
to bbpress_
:
http://chrishajer.com/bbpress/bbpress-tables.png
Those are the tables that need to be dropped to start the installation over. You don’t need to delete any files at all.
Doesn’t seem to work. It returned this: http://i.imagehost.org/0831/Screenshot-Dev_station_Mozilla_Firefox.jpg
Not to worry though – I’ll simply adjust the forums to reduce the clutter. 
Thanks for your help – I really appreciate it
Replace
<?php else :
if ( $prev_depth == 1 ) : ?>
<br />
<?php
else :
?>, <?php
endif;
?><a href="<?php forum_link(); ?>" title="<?php forum_description( array( 'before' => '', 'after' => '' ) ); ?>"><?php forum_name(); ?></a><?php
endif;
$prev_depth = $depth;
endwhile; ?>
with
<?php else :
if ( $prev_depth < $depth ) : ?>
<br />
<?php
else :
?>, <?php
endif;
?><a href="<?php forum_link(); ?>" title="<?php forum_description( array( 'before' => '', 'after' => '' ) ); ?>"><?php forum_name(); ?></a><?php
if ( $prev_depth < $depth ) : ?>
<br />
<?php endif;
endif;
$prev_depth = $depth;
endwhile; ?>
I think that should work