Xarzu,
I am a total newbie with bbpress and want to integrate to my wp 2.9.2 self-hosted site.
Can you publish a short description of exactly what you did to make yours work properly, either here or you can register on our site and I’ll contact you directly?
http://christianteenartists.com/dev
Thank you SO much!
bbPress isn’t a WordPress plugin. It’s a standalone software. Go to bbpress/ and you will access your brand new installation.
my website is http://www.ravegrounds.com
when ever I log in through wordpress, I am not logged in bbpress. and when I do try to log in bbpress, I get logged out of wordpress. Any ideas as to whats causing this?
I have been using wordpress 2.9.2 successfully. however when I installed bbpress in a sub directory under my wordpress install, it takes me through the install successfully and says everything is complete. It does not show up under settings in my WP admin area. And when i type in the address that i used for my bbpress install it takes me to a page that says
Oh dear!
bbPress is already installed.
Perhaps you meant to run the upgrade script instead?
everything i do takes me back to bbpress/bb-admin/install.php
Hello Friends,
I am new user of bbPress and familiar with wordpress.
Is it possible to integrate bbpress with php website? I want same login for both website.
Thank you in advance.
What happens when you try to log in to bbPress? Can you still log in to WordPress?
I think you can add a theme options page just like you do in WordPress, add a functions.php and then hooks to make a new admin page with settings.
No plugin that I am aware of. Hack away.
I have a handful of bbpress posts I’d like to import into my wp install as posts.
Is there a plugin or easy way to do this? Otherwise I’ll export the data from bbpress, hack the fields, and reimport to wp.
Thanks in advance.
Thank’s a lot everyone. The forums are working really nice 
If anyone is interested in seeing it in action, here’s: http://www.escoladinheiro.com/forums
Thanks a lot.
Paulo F
Paulo, all the code does is echo the name of the site. You can remove it.
If i remove the <?php bloginfo(‘name’); ?>, things apparently are working well. There’s any problem by removing that?
It looks like the 2 plugins bbpress-integration and wordpress-26-and-bbpress-09-integration are conflicting. You must delete any one of them via FTP.
I was installing some plug ins for BBPress on my wordpress.org site which is agbellcommunity.com. After I installed the BBPress Cookie integration plug in I activated it and it took me out to the log in page now when I go to log in I get the following:
Warning: Missing argument 3 for bbpress_integration_set_bb_auth_cookies() in /home/doodle4/public_html/agbellcommunity/wp-content/plugins/bbpress-integration/bbpress-integration.php on line 220
Warning: Missing argument 4 for bbpress_integration_set_bb_auth_cookies() in /home/doodle4/public_html/agbellcommunity/wp-content/plugins/bbpress-integration/bbpress-integration.php on line 220
Warning: Missing argument 5 for bbpress_integration_set_bb_auth_cookies() in /home/doodle4/public_html/agbellcommunity/wp-content/plugins/bbpress-integration/bbpress-integration.php on line 220
Warning: Cannot modify header information – headers already sent by (output started at /home/doodle4/public_html/agbellcommunity/wp-content/plugins/bbpress-integration/bbpress-integration.php:220) in /home/doodle4/public_html/agbellcommunity/wp-content/plugins/wordpress-26-and-bbpress-09-integration/bbpress-integration.php on line 95
Warning: Cannot modify header information – headers already sent by (output started at /home/doodle4/public_html/agbellcommunity/wp-content/plugins/bbpress-integration/bbpress-integration.php:220) in /home/doodle4/public_html/agbellcommunity/wp-includes/pluggable.php on line 868
How do I fix this?
Thanks
I’d recommend the ‘user photo’ plugins for bbpress and wordpress, tried the rest and that’s the best. (imo)
Hi Noel,
Thanks very much for commenting. Lack of communication is one of the biggies that drives us nuts on this board.
It’s great that you and Mike are working on the theme; and we all appreciate that not all bugs are as simple as they look. I think we can all appreciate that rolling things out to get them going is fine too, especially as users in a real world environment will pick up more bugs that peer testing – but I also think it’s ok for us to suggest that the HOMEPAGE being broken for 2-3 days is probably a bit… uncool.
With no communication at all, we’re never sure if these random bugs are due to theme updates or software updates. We’re not sure whether pages are using wordpress or bbPress or hacks of bbPress pages to create specific views (like plugins used to); and that means that most of the time we just don’t report bugs.
As always, thanks for your time.
The theme is based on a few functions lifted from classipress which provide a profile management page via wp theme pages rather then some god awful admin edit page.
As for bbress, I just re-coded all profile links to point at the wp profile, like
<a href="/people/<?php post_author(); ?>"><?php post_author_avatar(); ?></a>
I redirect registrations back to wp and I use the same DB for the forums and wordpress, so I just run some sql here and there pulling what I need displayed in wordpress from the forum and vice versa.
I need to put the bb profile info such as last posts, subscribed etc etc into my wordpress author pages, I think it should be possible – everything else has worked eventually.
<title>
<?php
if( function_exists(‘bb_title’))
{
bb_title();
} else {
wp_title(‘«’, true, ‘right’);
}
?>
<?php bloginfo(‘name’); ?>
</title>
Can anyone help me exclude the wp_title if there’s a function calling bb_title?
Kevin John – I wasn’t aware that you could use an if statement like that on wordpress. Good to know for future.
Hi!
I want to see the bbPM panel in wordpress, if I get a new message.
How I do?
I tested, but it’s not working friend: http://www.escoladinheiro.com/forums/
I really need to remove that blog title on the forums so i can lauch it
Kevin, can you adjust that code for mine?
i’m using this one:
<title>
<?php wp_title(‘«’, true, ‘right’); ?> <?php bloginfo(‘name’); ?>
<?php if( function_exists(‘bb_title’)) { bb_title(); } ?>
</title>
Akismet is not great on forums, it catches alot of legitamite posts and marks them as spam. That said, it also catches a good percentage of the spam too.
On one of my forums, 100+ spammer registrations a day is about the norm. One of WordPress and bbPress’s plus sides is it’s easy to register, so there’s alot of automated bots out there.
Not having Akismet activated with the amount of registrations / traffic you’re recieving is probably a bad idea.
Phpbb has a feature where you have to approve a member’s registration before they become members
Thats not built into the core, infact very few moderation abilities are; but I’m sure there’s plugins to enact such functionality. Zaerl had something like that I belive.
I am using WordPress MU, the Buddypress Magazine theme
bbpress is not built to, and does not play well with WPMU.
If you’re using WPMU, I strongly strongly advice BuddyPress instead of bbPress.
They are somewhat integrated
We probably need somewhat more information
As long as you’re ok with me writing this without testing:
<title>
<?php bloginfo('name'); ?>
<?php
if( function_exists('bb_title'))
{
bb_title();
} else {
wp_title();
}
?>
</title>