Not sure if this still applies, but I found something in the wp.org forums and posted it at:
Adding bbPress as WP Page
Trent
Is there a way to have the bbpress forum show within one of the wordpress pages. I dont want my users to go from one site to another that looks different. I want them to stay on my blog yet do everything in the forum while still staying on the blog. is that possible?
I got it working…. problem was i had saved the file as a rtf so when i switch the extension… it had like Options +MultiViews color ffff text size and stuff in it… i cleared it and insterted what you told me and everything works fine. thank you
Just delete the file .htaccess out of the /beta/ folder again and I will see what I can dig up for getting wordpress to see it. Are you using any subdomains to see it or just the URL you setup above in config.php ?
Trent
I did as u instructed… and now i cant even see my forum lol
http://kicksonfire.com/beta/ it goes to my wordpress
From the FAQ:
Create a file called .htaccess in bbPress’ root directory. Put only the following line in that new file.
Options +MultiViews
Just upload a file like htaccess.txt with the line mentioned above and then use the FTP program to name it to .htaccess versus htaccess.txt (notice the dot before name).
WordPress is just thinking right now that you have a URL that doesn’t have an assigned page or post to it and it is getting screwed up! Try that one out!
Trent
What is my .htaacess file on my bbpress folder suppose to say?
And how can i create it if i have a mac?
I have my own server with theplanet.com
It might be that the .htaccess file of wordpress is over-writing the one that should be in the bbPress folder /beta/. I have heard this can happen. Do you have the .htaccess in the bbPress folder? What host are you running? I think (without searching) that this was something on GoDaddy, but I am not 100% sure…..
Trent
I know nothing that would do it straight to bbPress, but one could be written based on the WP plugins like WP-AutoBlog, FeedWordPress or another Maggie based plugin.
I think the best bet would be to great a WP blog (hidden) that populates using one of the mentioned plugins and then a bbPress plugin like bbSync or bbPress-Post to pull the entries from WP into bbPress as entries.
It would be better to create a plugin that does it automatically, but if you don’t want to re-invent the wheel, that is the only solution I can think of right now.
Trent
I have wordpress installed in my main directory kicksonfire.com
I have installed bbpress at http://kicksonfire.com/beta/
for some reason when i click anything it takes me to teh 404 error page of my wordpress blog… wat can be wrong?
Hey.
I solved it myself.
As a matter of fact it was a http://www./no-www issue.
In WordPress my Blog-URL was http://cmscentral.de and after I changed it to http://www.cmscentral.de everything worked just fine.
There is a plugin for WordPress but I haven’t seen one for bbPress.
In header.php, in the header div (where the login_form() is) put this:
<img id=”headerlogo” src=”http://www.theangrywaiter.com/wordpress/wp-content/uploads/awbanner.jpg” alt=”The Angry Waiter” />
Right now though, the image is taller than the header div (the header is 106px, the image is 131px, I think.)
So, to make it all work, you’ll need to make the header div taller, or the image less tall. Then you’ll need to apply some styling to the image you just placed in the header. Something like this:
#header img {
whatever: here;
}
That just gets the image into the header. Then you need to wrap an <a href="http://www.theangrywaiter.com/" alt="go home"></a>
around that image tag you just added, to link the image to the destination.
Just grab the links to the individual forum pages then, and insert them into a WordPress page. You’ll have to maintain it manually, so if you add a new city you would need to add a new link to that WordPress page. I imagine there is probably a way with integration to use the bbPress functions in a WordPress page but I think that’s more work than it’s worth, especially if your list of cities is pretty much set.
Your WordPress page would be titled “Forum” then, and in that page would be the links to the individual forums. Then you might not even need front-page.php since you’d be navigating directly to the parent forums for each city. I think you would probably leave it there so if anyone navigated in the breadcrumbs to the next level ‘up’ they would still get a list of all cities, either links to the parents, or the way you had it set up initially with the long front page.
I have installed bbPress using the same DB as WordPress so they can both share user details. This works great. Although I have not put bbPress in a sub-dir of WordPress to share cookies.
However, when I log in as the Key Master (who is also the administrator in WordPress) I cannot create new Forums. It says I don;t have permission to do that! When I use the exact same set up with a dedicated bbPress DB it all works ok.
Is this a bug? I think it must be…
@fel64:
My Blog’s address is: http://www.cmscentral.de/index.php
Installed in subfolder /content/
My forum’s address is: http://www.cmscentral.de/content/forum
I installed bbpress in my Blog’s/WP’s subfolder, because that supposedly should automatically have the right cookie settings.
Could this be a www/no-www issue?
Did anyone find that you could piggyback onto the WordPress integration/authentication when using the OpenID plugin? It didn’t work for me. I had the plugin activated on my WordPress site and was able to login and create users just fine, but bbPress didn’t know about the credentials and wouldn’t login.
I need to get more familiar with how the integration is working – I thought it would work fine since it created a normal WordPress user record. But it kept saying the userid was unknown… Will probably dig into it later. The WP plugin is great – the persona fill in stuff is very cool. Only quirk was my ‘Display As’ defaulted to the userid even though a name was included. But I digress.
electroniques: what are the urls of your installs? You probably need to set the cookie domains explicitly.
joeby: I’d love to, but advice to electroniques is going to help you too. If you want to reward the help anyway, that’d be awesome.
Yep, I have the same issue. Haven’t come across the answer yet, but waiting (im)patiently so I can get my bb up and running… As near as I can tell it’s a cookie issue, but I don’t know how to fix it…
Anybody wanna make $20 to get my installs working?
Hey.
I just setup bbpress and integrated it into my WordPress blog.
The good news is that when I signup a new user in my WordPress blog I can also log into my bbpress forum using the same username and password.
But I would like the user to remain logged in. For example if I login to my WP blog and then click a link that takes me to a post in my bbpress forum, I have to login again.
I thought I did everything necessary in order to synchonize WP and bbpress.
Does anybody have any clues what could be wrong?
Thanks a lot in advance already!!
Now .. ive managed to make WP and bbp share same theme. Dont know if its god but it works.. im running right now.
wp-content/theme/header.php
<?php
include(ROOT . '/theme/header-start.php');
?>
<title><?php bloginfo('name'); ?> - <?php if ( is_single() ) { ?> » Archive <?php } ?> <?php wp_title(); ?></title>
<?php
wp_head();
include(ROOT . '/theme/header-end.php');
?>
<body>
<?php
wp_head();
include(ROOT. '/theme/body-start.php');
?>
my-themes/theme/header.php
<?php
include(ROOT . '/theme/header-start.php');
?>
<title>MyWebsite - <?php bb_title() ?></title>
<?php
bb_feed_head();
if ( is_topic() && bb_is_user_logged_in() ) : ?>
<script type="text/javascript">
var lastMod = <?php topic_time( 'timestamp' ); ?>;
var page = <?php global $page; echo $page; ?>;
var currentUserId = <?php bb_current_user_info( 'id' ); ?>;
var topicId = <?php topic_id(); ?>;
var uriBase = '<?php bb_option('uri'); ?>';
var tagLinkBase = '<?php bb_tag_link_base(); ?>';
var favoritesLink = '<?php favorites_link(); ?>';
var isFav = <?php if ( false === $is_fav = is_user_favorite( bb_get_current_user_info( 'id' ) ) ) echo "'no'"; else echo $is_fav; ?>;
</script>
<?php
bb_enqueue_script('topic');
endif;
bb_head();
include(ROOT. '/theme/header-end.php');
?>
<body id="<?php bb_location(); ?>">
<?php
include(ROOT . '/theme/body-start.php');
if ( is_bb_profile() ) profile_menu();
?>
my-themes/theme/footer.php
<?php
do_action('bb_foot', '');
include(ROOT . '/theme/body-end.php');
?>
wp-content/theme/footer.php
<?php
include(ROOT . '/theme/body-end.php');
?>
theme/header-start.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head profile="http://gmpg.org/xfn/11">
theme/header-end.php
<link rel="stylesheet" href="<?php echo URL; ?>/theme/default.css" type="text/css" title="Default style" media="screen" />
<link rel="alternate" href="<?php echo URL; ?>/?feed=rss2" type="application/rss+xml" title="RSS Feed" />
<link rel="pingback" href="<?php echo URL; ?>/xmlrpc.php" />
<link rel="EditURI" href="<?php echo URL; ?>/xmlrpc.php?rsd" type="application/rsd+xml" title="RSD" />
<link rel="wlwmanifest" href="<?php echo URL; ?>/wp-includes/wlwmanifest.xml" type="application/wlwmanifest+xml" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="generator" content="WordPress 2.3.1" />
</head>
theme/body-start.php
<div id="wrapper">
<?php
get_sidebar();
// Etc...
?>
theme/body-end.php
<?php
// Etc...
wp_footer();
?>
</div>
</body>
</html>
Hope its all there.. 
URL and ROOT is defined in wp-config.php
Edit: you can of course cut BODY to include different sidebar wp / bbp
I don’t think they handle plugins at trac. At least there is no component for “plugins.”
I see you already posted in the plugin forum:
https://bbpress.org/plugins/topic/2?replies=13#post-2
You could try contacting the author of the plugin:
Michael D Adams
mda TA blog NOSPACE waffe TOD com (from his blog, and there’s also a wordpress email address for him as well if you look around…)
Are you thinking this should be handled in the template files, and thus should be submitted to trac, or should someone just update the plugin?
I do have it installed on the WordPress side of the site.
Ok, I’ve disabled it.
Let’s see what happens now!
Thanks for the reply.
Ah, great! I’ve been translating bbPress to portuguese to use on my WPMU+bbPress project and when I try to set the language I get the error as well….
Anyways, I guess I’ll have to try merging the two PO files.
@ganzua, I don’t think you really need to define BBLANGDIR – it works because you have already defined the .mo file in WP config file. You get the error *if* you try to define BBLANG. However, if you leave BBLANG as ”, you won’t get the error.
I actually haven’t tried yet, but I think it make sense.