I am referring to bbpress plugin for WordPress
None of the security plugins work for bbpress plugin of WordPress
Please help, I cannot stop spam!!!!
I too miss the ability to search across the entire WordPress installation. Any news on this? A forum without search capability isn’t much use. Unless you would want users to keep making new threads to already answered questions
anointed will enjoy 0.4.1 in that it has the option to have manual bar insertion.
It also means that the deletion JavaScript isn’t necessary to show as there any place it is at should be the desired place, so manual insertion doesn’t insert that JavaScript.
I had a minor derp moment on the subversion in that I made a mistake with 0.4.0, so made it 0.4.1 really quickly -_-
Should be good.
https://wordpress.org/extend/plugins/bbpress-post-toolbar/
Now i’m going to have a small break and give some attention to my girlfriend
Bah, had it working after upgrading to 3.2, now it’s broken again.
https://wordpress.org/support/topic/plugin-bbpress-bbpress-fails-when-facebook-like-plugin-is-working?replies=21
Looks like it’s on the SFC end of things tho… I think
Ok, just to see if everyone’s experiencing the same behaviour or something’s “wrong” at my end:
When I click on the edit link for a topic (first post) the link returns me to the topic page. (I would have hoped to edit the topic / post) So that doesn’t seem to be working. Maybe it’s because of the time constraint that allows you to edit topics/replies? I would like to disable that time constraint anyway. Any options there?
When I click on the edit link for a reply in that topic it shows me a page with the content of the page stripped and a “Edit this entry” link, if I click on that it sends me to wp-admin (with the post open to edit). Is there no “front-end” editing of the topic/reply possible? I’d like to keep people out of the admin as much as possible.
That’s happening when I’m an admin, when I’m a subscriber I don’t even see the edit links (although I have the “edit_replies” / “edit_topics” capabilities).
I’m running bbPress 2.0 RC1 – 3363. (Just in case it matters: I started out with the beta that’s in the WordPress repository and replaced it twice with updated versions from the trac.)
Anonymous User 5853594Inactive
@tofugu
Upgrading is that simple… Just delete the content of the folder and replace it with the files from Trac.
https://bbpress.trac.wordpress.org/browser/branches/plugin/
Well I would be happy to test it further, the plugin says its bbPress is forum software with a twist from the creators of WordPress. Version 2.0-beta-3
This is a plugin straight from the wordpress site I looked over the release page but I’m not sure I wanted to take a chance killing what I had…
But I can take a look at putting the files directly onto the server which is the way we used to do it. I just haven’t done it that way since they made the auto update so damn functional…
So yes I would be happy to test it out since I don’t have much into mine as of now… I noticed it did get indexed in Google for several keywords and that made me real happy… Love that SEO…
Hi,
I was wondering how can I enable facebook connect to post replies or create topics in my bbpress forum which is installed as a wordpress plugin on my wordpress blog. Any help or a hint in right direction will be appreciated.
We have done a bit of testing with this as it’s a major issue for us.
We’ve got the translators to work on beta1 and understand the logic as follows (based on function load_textdomain()):
1.- translated po (mo) files have to be named bbpress-xx_XX.mo with the xx being the language/country combination as on standart WordPress Codex (ie es_ES) for spanish / Spain
2.- function will look for the file under the plugin directory//bbp-languages and if it’s not there will look for it at the standart WP language dir, normally wp-include/languages but this may vary.
Hope this helps anyone with this issue. Perhaps a TXT file with this info could be included under the bbp-languages folder of the plugin.
Good ideas anointed. I’ll make the auto-insertion optional.
m-jay: The code button just adds the HTML <code> tag. I haven’t done anything to prevent HTML inside the code block from being parsed or from being blocked by WordPress/bbPress. I also don’t really have any intention to do so.
Allowing <iframe> to be posted would pose a potential security risk, and the safest would perhaps use a shortcode. See if there are any plugins that give a bandcamp shortcode, there is bound to be one.
Thanks for posting that. I will give it a try as soon as possible. Thanks again.
Thanks, I’ll definitely look at it.
I use the SEO plugin via Yoast which also supports sitemaps for custom post-types.
This is one of those MUST HAVE plugins on every site 
http://yoast.com/wordpress/seo/
Add the following code to your theme functions.php file
function wptumble_feed_request($vars) {
if (isset($vars['feed']) && !isset($vars['post_type']))
$vars['post_type'] = array('post', 'topic', 'reply');
return $vars;
}
add_filter('request', 'wptumble_feed_request');
Thanks JJJ. This clarifies things and I understand the priorities.
And I’d be very interested to see bbPress 2.0’s perf on one of the big .org forums.
BTW, I think this issue is orthogonal to deep integration. It is really about…
1. The size of the posts table relative to a typical WordPress blog posts table
2. The fact that there is no denormalization to eliminate huge complex queries
This isn’t an issue for a Worpress blog, even a massive multisite installation like WordPress.com, because the posts table for each blog is separate and there is seldom a need to do a cross-blog query. This means that WordPress for blogs can scale nicely without too many tricks.
One potential solution is to create a helper table that denormalizes the things you need and points to the actual post in the wp_post table.
I use wordpress (and I am experimenting with the bbpress plugin). I use the xml sitemap generator plugin for wordpress, and it has worked well (I think its made by Arne Brachhold).
I noticed that it didn’t seem to pick up on bbpress posts though, even though I have bbpress installed as a plugin. Is there some way to have these integrated so that it shows for both?
Or is there a plugin available that combines these two into one sitemap?
Thanks!
What is the purpose of the CODE button ?
I’m asking this beacause,
I need to allow people to post their Bandcamp players in our forums … Bandcamp offers iframe AND shortcode for wordpress.com … but those shortcodes are not compatible with my wordpress install …
Here you can see an example (clic on SHARE then WORDPRESS):
http://beatmakit.bandcamp.com/track/amnezic-demande-de-featuring
or here http://beatmakit.bandcamp.com/album/hip-hop-beatz
Is there a way I could use your toolbar to get bandcamp players work in bbpress Forums ?
PS. I tried to install the WP Bandcamp plugin, but it handles yet another shortcode ; not compatible with the SHARE option of the players …
Can i use the bbpress WordPress plugin for my website and update when the final is out?
or the final version a totaly other version like the beta?
Hi,
I am using bbpress 2.0 beta 3b, twentyten theme.
I’ve upgraded my wordpress to 3.2, and suddenly I (admin) cannot edit both posts and reply from frontend as the edit button does not respond anymore. It takes me back to the original page.
This was not happening when I was using wp 3.1.3.
Even if I change my theme to twentyeleven, it does not work in wp 3.2.
Can you advise?
It’s a concern for sure, and bbPress will scale no differently than WordPress does with that many entries.
Comparatively, bbPress 1.0’s schema was purpose built for exactly what it was designed to do, and using the WordPress posts table is a bit of square peg in a round hole. bbPress 2.0 is the compromise of maximum efficiency for ease of integration. If you must have maximum efficiency and are not using deep integration already, then bbPress 1.0 is the safest bet for now. bbPress 2.0 is only going to get better as more devs use it and more people interact with the code.
Ideally I’ll get it running on a few of our sites in the .org sphere and we’ll be able to stress test it a bit more. That will be happening in the next few weeks, but isn’t as much of a priority as releasing the first 2.0 version and getting BuddyPress 1.3 out as well.
We’ve been running wordpress for a few months now, and decided to install bbPress. To integrate, we’ve tried to use different databases, as well as the same database. On our 5th attempt at installing bbPress and trying to integrate, our main blog was affected. Every page on our wordpress site are bringing 404 errors, except for our home page. We’ve also been locked out of our admin dashboard with this message: “You do not have sufficient permissions to access this page.”
I don’t remember exactly all of the ‘variables’ that I tried during this attempt, but I do remember adjusting the prefixes. The only thing on the web that I could find, is this (But it doesn’t go into how they fixed the issue). http://bbshowcase.org/forums/topic/404-pages-after-integration-w-wordpress/page/2#post-2039
Does anyone have a clue, as to what’s going on, or how we can change our prefixes? We’d like to get our wordpress site working again. Thanks in advance.
Thanks Erlend…
But I know how to make wordpress networked and my networked wordpress is sub domained and it have not a good like if my blog is http://blog.7i7griffin.info but my forum be 7i7griffin.info/forum
Am I say something wrong?