It’s a plugin for WordPress + bbpress 2.0.
It allows users to ignore other users by way of hiding their posts and topics.
It’d be great if anyone with spare time could test and give feedback 
http://dump.master5o1.com/files/bbpress-ignore-user.zip
This happened:
bbPress Standalone Importer
Warning: set_time_limit() [function.set-time-limit]: Cannot set time limit in safe mode in <removed for privacy>/wp-content/plugins/bbpress/bbp-admin/importers/bbpress.php on line 668
Warning: Cannot modify header information - headers already sent by (output started at <removed for privacy>/wp-admin/admin-header.php:35) in <removed for privacy>/bad-behavior/bad-behavior/screener.inc.php on line 8
Importing Users
We’re in the process of migrating your users...
Renamed the wp_users and wp_usermeta tables to bb_wp_users_tmp and bb_wp_usermeta_tmp respectively.
WordPress database error: [Table '<removed for privacy>.bb_users' doesn't exist]
CREATE TABLE wp_users ( <code>ID</code> BIGINT( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, <code>user_activation_key</code> VARCHAR( 60 ) NOT NULL DEFAULT '', KEY ( <code>user_login</code> ), KEY( <code>user_nicename</code> ) ) SELECT * FROM bb_users ORDER BY <code>ID</code>
There was a problem duplicating the table bb_users to wp_users. Please check and re-run the script or duplicate the table yourself.
After that I only got:
WordPress database error: [Table 'md220579db167769.wp_users' doesn't exist]
SELECT * FROM wp_users WHERE user_login = '<removed for privacy>'
WordPress database error: [Table 'md220579db167769.wp_users' doesn't exist]
SELECT * FROM wp_users WHERE user_login = '<removed for privacy>'
Warning: Cannot modify header information - headers already sent by (output started at <removed for privacy>/wp-includes/wp-db.php:940) in <removed for privacy>/wp-includes/pluggable.php on line 934
I delete the tables bb_wp_usermeta_tmp and bb_wp_users_tmp trying to fix this problem: stupid of course …
Just fixed it.
Turns out the BBpress SEO Tools plugin was stopping URLs from working, along with BBcode, post signatures and a few other little things.
Deactivating the plugin and using an alternative SEO plugin has allowed these things to work.
edParticipant
I installed bbpress into my site and it works awesome (not the plugin) – I’m looking to change to another domain name (new database)…how would I move the bbpress that I already have installed on my site to my new domain?
Thanks
Hi John, thank you for reply.
No changes, “iam_forum” still appear on page and post of blog.
The integration of custom theme (post bbPress 2.0 – Theme Compatibility) seems working fine.
packzap: Please upgrade to 1.0 or trunk and then migrate to plugin.
packzap: Please upgrade to 1.0 or trunk and then migrate to plugin.
It’s too bad. Lots of people want help with this issue but that forum seems to be down for me.
OK, if you change line 189 of forum/bb-includes/backpress/class.wp-auth.php to this:
$key = wp_hash( $username . $pass_frag . ‘|’ . $expiration, $scheme );
It works.
The standard is this:
$key = call_user_func(backpress_get_option(‘hash_function_name’), $username . $pass_frag . ‘|’ . $expiration, $scheme );
Which doesn’t work. Has the algorithm changed in the latest version of WordPress?
In my opinion must merge the two profile types: forum profile (user) and wordpress profile (author).
After trying out bbpress with buddypress i really think that bbpress as it is now works so much better. I just didn’t like how it worked in bbpress. This does everything and more than quite alot of forums out there and i hope it stays this way
That’s awesome.
My brother and I have our own forum site project together also.
I’m the programmer type and he’s the designer type. But we’re both a bit too lazy and apathetic to get our site looking as nice as that.
http://tartarus.co.nz/ (wordpress + bbpress integration).
He also finds it difficult to design considering our forum is more of a general discussion community rather than something specific.
That’s awesome.
My brother and I have our own forum site project together also.
I’m the programmer type and he’s the designer type. But we’re both a bit too lazy and apathetic to get our site looking as nice as that.
http://tartarus.co.nz/ (wordpress + bbpress integration).
He also finds it difficult to design considering our forum is more of a general discussion community rather than something specific.
Hi, all,
I’m having issues with the forums on http://www.daddybegood.com/. It’s installed correctly (as far as I can tell, at least!), but no-one can post on it.
The log-in system seems to work fine, but the forums still show “You must log in to post”.
DBG is functionally identical to our sister site http://www.high50.com/ which has a fully-working forum. The only differences are in the database (content, config, etc).
Anyone got any ideas what might be going wrong?
I have also not found any user profile section in bbpress.
Ok, I’ve enhanced the extra-bar deletion JS so that it finds them all and deletes all except the last one. Because, assuming that the post form is at the bottom and such….
But it’s still dependant on the above action.
Not sure how to get past that yet without more code reading…
(The whole JS thing is really just a hack until I do find out where to hook it into properly).
Will update the zip file in a moment.
Yeah, I need to figure out some stuff about that. It’s because I’ve hooked it into this:
add_action( 'bbp_template_notices' , array('bbp_5o1_toolbar', 'post_form_toolbar_bar') );
I then delete it using javascript if the bbp-reply-form or bbp-topic-form textarea elements aren’t on the page.
I’ll look for a way to fix it in a moment.
thank you for this plugin! i’ve installed it to test (on my very slightly modified twenty ten them) and the one problem i have is that the tool bar shows up at the top of the page and not just in the add topic/reply box.
Oh. Just noticed that’s really just a place holder one.
If you had the buddypress bundled forums set up then it would be in root dir of WordPress. Don’t need to delete anything if the buddypress bundled forums aren’t set up.
and buddyPress plugin, latest version. (bbpress forum component is disactivated,
because I dont know where to find the bb-config.php file in a bbpress plugin install ???)
./wp-content/plugins/buddypress/bp-forums/bb-config.php
idk about the rest of your post.
Sounds like you want to check something like this:
<?php if( bbp_is_forum() || bbp_is_topic() || bbp_is_reply() ) {
echo "iam_forum";
}
?>
Hi, trying to integrate in my template BBP, but i need to made some special changes in sidebar.php when the user are in forum’s.
to initial check i write in the sidebar.php
<?php if( bbp_is_forum() ) { echo "iam_forum";
}
?>
but the echo is visible in every page/post not only in the forum… what’s wrong?