johnhiler, part of us using WordPress’s built in API and architecture means we’re actually leaving turned off a lot of functionality that could easily be turned on, filtered, changed, or added to with actions.
Without it being too over the top, we’re trying to plan ahead and put actions and filters where I think I would use them myself. Since most of what we do for clients is develop custom plugins to change the way WordPress functions, we should be able to apply that experience to bbPress.
One of the things we’ve struggled on with BuddyPress, is how to make plugins, for plugins. Since plugins don’t have an internal dependency like there is on CSS or JS, we’ve had to filter and action our way into a workable solution.
So while bbPress itself is a plugin, the plan is for other plugins to be able to sneak in and change bbPress behavior before it loads, or be able to ‘plug in’ the same as always. So bbPress will be its own core, but also modular and pluggable.
All this, while striving to be as light as possible. Our work is cut out for us.
I think if there was such a thing as optimism police, they would live in these forums. 
I also think, the people we will win over, are everyone that thinks this is the worst thing ever to happen since burnt bread.
I was viewing another forum that isn’t hosted by BBPress, but I noticed it had a headline and I took a pic. I blotted out the name, so it wouldn’t be considered advertising or spamming:
http://i31.tinypic.com/2yl3dzd.png
Anyways, I’m wondering if there’s some sort of plugin here that can do this? We have a lot of lurkers on the forum I moderate and I thought it would be nice to have something like this to encourage them to create an account and post.
If this is the wrong place to post this, I’m sorry, if a moderator can please move it to the appropriate area thanks.
_ck_,
Really apprecaite the hints.
I’m definately not a PHP coder by trade, so these sorts of tips are invaluable.
Cheers,
Kev
Hey stats are working in the plugin section, awesome. Thank Matt.
Now just get tag import working again (from the readme.txt) and the plugin section practically back to 100%
Oh come on. Is it even a question that as a plugin for the largest blog software (both in memory/disk size and number of users) it will be popular? I mean was that honestly a worry?
You’ll probably exceed bbPress standalones 3-year download numbers for BOTH versions combined in just a few months with front-page advertising on wordpress.org
But you certainly are not going to get anyone who is NOT using WordPress to install WordPress just to create a forum. There are far better options out there.
I mean the hosting requirements alone for someone running WP + bbpress plugin will be significant. There is absolutely no way they will be able to run an active forum without caching.
I fully expect Automattic to acquire a caching plugin and start including it with the core in 2010, especially since it meets Matt’s 80% use requirement.
Hey good work.
Let me make a strong suggestion in your code technique.
All those variable names being tossed around as globals is somewhat dangerous – someone is going to accidentally “step” on one someday.
Instead how about an array or object instead?
ie.
$topic_add_quotes=blah;
$topic_add_sticky=blah;
$topic_add_sticky_label=blah;
etc.
and
global $topic_add_quotes;
global $topic_add_sticky;
global $topic_add_sticky_label;
etc.
instead becomes
$kjg_seo->topic_add_quotes=blah;
$kjg_seo->topic_add_sticky=blah;
$kjg_seo->topic_add_sticky_label=blah;
etc.
and then no matter how many items you just pass one pointer in your functions
global $kjg_seo;
The added benefit is you can later loop through all the elements if you make an admin menu.
Also, when switching based on page type, constantly calling all the different functions, ie is_forum, is_front, is_topic etc is “expensive” because of how bb_get_location works
Instead just $location=bb_get_location();
and then look at what it sends you in the string which is ultra fast for each of the comparisons.
Thanks for the feedback and the link to the plugin but I don’t want it to look or feel like a blog, just act like a blog. I prefer the thread/post structure over the entry/comment structure. I was originally using WordPress and had a MyBB forum on the same site, then I switched over to just a MyBB forum with a Blog plugin, but then found that bbPress felt like both a blog and forum without requiring different installations to achieve both. I just created certain categories that only I could post in (the “My” areas) for my “blog areas” and the rest are open for free discussion. 
I am working on getting the first post of the latest topic to appear on the front page but I have to many other development projects on my plate at the moment.
“Shared-hosts are the bread and butter of WordPress usage. The good news is servers are way more powerful than when I wrote the first bbPress, and we can take advantage of that to provide a richer experience.”
This is definitely true. It’s kind of the Microsoft approach: grow the OS core, and lean on the hardware handle the growing codebase. It works for smaller sites that don’t hit scaling limits and for larger sites that can afford bigger hardware.
“The uncertainty of testing the interactions of N factorial plugins is daunting and gets untenable quickly.”
Plugin interaction is definitely a concern. But in practice, I have rarely if ever had plugins conflict with each other.
“Better to draw a line in the sand and promise the user ‘these things will always work together.'”
I think the “promise” model depends on having a large and growing team of developers actively managing the core. That hasn’t been the case in the past, so moving stuff into the core has actually slowed down development of the platform quite a bit. Perhaps things will be different in the future…
In any case, even with developers available to help build up the core – I’d still prefer to have a model that embraces plugin developers, and then has specific plugins blessed as official branches. This is where more social forms of source control like GitHub may be better than Subversion; plugins wouldn’t be dependent on just one developer, since anyone can seamlessly create and post a new branch. It’s much more like the pastebin stuff that’s constantly going on here in the bbPress forums.
Thanks for the reply!
John
Shared-hosts are the bread and butter of WordPress usage. The good news is servers are way more powerful than when I wrote the first bbPress, and we can take advantage of that to provide a richer experience.
I like the idea of plugin-centric development from a theoretical point of view, and obviously plugins have been at the core of WordPress’ success, but I think it can be taken too far and take away from the user experience.
It’s about taking responsibility. Even though you could break down almost every feature of WordPress into a plugin and distribute everything bundled, and even activate a bunch of them by default I think you lose a “buck stops here” for other developers to target. The uncertainty of testing the interactions of N factorial plugins is daunting and gets untenable quickly.
Better to draw a line in the sand and promise the user “these things will always work together.”
I also remember 0.7 fondly — along with Akismet it was the released product with the highest percentage of my code. Last year I shifted most of my code to internal tools, and this year that has waned even more due to the force of nature that is Mr Momrik my Technical Assistant.
That said, there is minimalist-beautiful, and minimalist-useless. Even Ferarris have stereo systems. I think we can find the balance between the two even though it might mean we misstep in one direction or the other along the way.
I agree with you more than you. In hindsight BackPress was a mistake. Its goal was to unify WP and bbP development, and it just ended up crippling bbPress with needless abstraction and didn’t actually generate any user-critical improvements, like being able to use WordPress themes.
I would like to have a sidebar on my forum that has several lists; categories, recent posts, most popular posts, but I am not sure how to pull that data over from wp to bbpress.
Are there any plugins that i can use to generate these lists? i already have the list set up in my wordpress theme sidebar where they use js to open and close the list. so i am really looking for something that i can customize the list to match that.
I have been looking through the forum to see if i can find the solution to this but am still unable to do so, so any help/direction would be appreciated. thanks
“johnhiler, if you like plugin-centric development, you should love the bbPress plugin so far (hopefully)
Hopefully it’s able to walk the line and offer the best to both.”
@John James Jacoby – I’d love to hear more! What do you mean?
I think bbPress as a plugin is going to win a lot of people once it’s ready and out in the wild. 
Erlend, will try my darnedest to deliver
johnhiler, if you like plugin-centric development, you should love the bbPress plugin so far (hopefully)
Hopefully it’s able to walk the line and offer the best to both.
What is a plugin and what is core is always one of those topics that tends to change and drift with the times. 6 years ago having properly formatted links to someones blogroll was considered important enough for WordPress core, but chances are people are using that functionality less and less as time goes on and people are able to connect to people more quickly and organically.
kevinjohn, we haven’t tackled it in the plugin version yet, but the difference between a ‘category’ and a ‘forum’ will be fairly distinct once we get it going. My experience working with the Categories Hierarchy project back in my phpBB days taught me the importance of handling the way those types of data behave.
“As for bundling multiple plugins with core — ultimately it’s a cop-out. If something is good enough to be included with the core download, put it in core!”
I’m a big fan of a plugin-centric approach to platform development. I would take the bbPress platform and add a ton more hooks and filters to it. Then I would document the heck out of it, and refactor as much of the core into external plugins as possible. That way, plugin developers would have a lean and mean core to program to.
It sounds like you prefer a core-centric approach. I have concerns that both WordPress and bbPress are increasingly becoming too heavyweight to support shared hosting (or to scale for larger sites, without expensive hardware). But perhaps I am underestimating the power of the dropping cost of hardware and of aggressive output caching.
I understand your general framework to approaching core features, and understand that it’s been successful for you with WordPress. It’s kind of similar to how Microsoft approaches integrating application features into its own core Operating System. Both platforms have been successful, so I can’t knock the approach.
I guess we’ll just agree to disagree on this one. I’m just a big believer in a plugin-centric model. I think WordPress has succeeded in spite of its aggressive core-centric model, not because of it. But I understand your philosophy, and respect your right to enforce it on future versions of bbPress.
Best,
John
Hello,
I’m working on a site with full integration of WordPress & bbPress. Everything is working great! (After a fair bit of fiddling!
)
So now I’m just working on cosmetics. I want to show both WordPress & bbPress admin links in the header. So I want to make it obvious which is which.
Is there anyway to get bb_admin_link to output something different than ‘Admin’. Does it take more arguments other than ‘after’ and ‘before’? Or do I need to hard-code it somewhere?
I’ve looked around a bit on the site, but I haven’t found much info on this function.
Thanks!
That sounds great but after nearly 3 hours of attempting to get it working… I just feel too tired to keep trying.
I’ve set everything as per the instructions (cookiedomains, hashes, etc.).
Both WP and bbPress are generating cookies with the same names and same paths.
But by some unknown (to me) force they refuse to recognize each other’s cookies – when I log into one of them I get thrown out of the other.
It’s bbPress 0.9.6 with WP 2.9.2
Maybe I’ll try on clean installs tomorrow…
I just don’t have a clue what’s wrong
@Matt… so, are you planning on killing bbpress standalone or not? Why do you keep ignoring the question that 90% of the members here are wondering?
And what about the future of bbpress.org? Even an “I’m not sure yet” would be helpful.
It blows my mind that you don’t see the massive potential for an improved standalone version. You don’t even have to be that involved…
Screwing bbpress into a dumbed down plugin will just be another “Fireboard” like it was on Joomla… anyone remember? Complete chaos and confusion. You can’t try to please all demands with a middle-ground decision that accomplishes none of the above.
It only makes sense that there is a bbpress standalone with powerful plugins, that can integrate with WP. If you so desperately want a plugin, than make it a tiny lightweight little bugger that is for “mini forums” or something.
And again, where does this all leave backpress?
Is there any timetable when the bbPress plugin project would be ready?
I’ve set my hopes for a Christmas Alpha 
Exactly the way I always dreamed it would be <3
Thanks for the answers guys, this really puts my mind at ease.
Is there any timetable when the bbPress plugin project would be ready?
It’ll be a while yet I’m sure? If we go anything by the 1.2 Milestone on the bbPress Trac, it says another 5 months away, and remember that at the moment we’ve only got Pete Mall and JJJ working on it!
@Matt Mullenweg: Glad to see you around here again!
I just got the message about having the upgrade the database (due to subscribe to topic being added and a database change.)
It seems that Matt listened to my request. Thank you, Matt!
When editing a reply, the “Notify me of followup posts via e-mail” text appears twice (once below the “Allowed markup” and once above.)
I think this is related to theme, I didn’t happen on my installation with Kakumei.
Also, followup is probably a lot like the work “alot”. Should be “follow up” I think. The whole sentence might need to be reworded. They’re not posts, they’re replies, right?
I made a patch that introduced this sentence and I copied it from popular WordPress plugin Subscribe to Comments. That of course doesn’t mean that it can’t be changed to any better one.
I think “Topic” should probably not be capitalized in the sidebar link. Just a suggestion.
This is how Matt made it when he introduced this feature in December (and how it was displayed here before update to 2.0), I didn’t change it in my patches.