Forum Replies Created
-
In reply to: WP Integration: suggested user role mappings
It depends how much you trust editors with user records. I would tend to go with this.
Administrator – Key Master
Editor – Moderator
Author – Member
Contributor – Member
Subscriber – Member
As you can see, you don’t need to have one-to-one relationships.
In reply to: Digg IntegrationI don’t think there is a reliable equivalent which will work everywhere.
If you are just looking for the current topic’s link then try
topic_link()
with no arguments.In reply to: Permalinks works with DreamHost?Permalinks have worked for me on Dreamhost in the past.
In reply to: Troubleshoot integrationYou do need to use the same user tables for both WordPress and bbPress to achieve what you are after.
In reply to: Akismet key idThere is no performance difference as far as I know if you use the same key for all your sites. You start hitting restrictions when your total volume gets too high, in which case you might opt for the commercial Akismet license instead.
In reply to: Plugin Request: Forum Categories..1.0-beta will have forum categories built in.
In reply to: Categories in 0.901?Categories will be available in 1.0-beta.
They are available in trunk now – although trunk’s installer is a little broken right now.
In reply to: Diacritic letters i username? Like GöranPlace it in a folder called “my-plugins” (create it if it doesn’t exist). Then go to the admin area and activate the plugin.
In reply to: TalkPressThat’s a fairly serious accusation and warrants an investigation if true. Can you be more specific please?
bbPress does a lot of filtering of user input to avoid these things. What part of bbPress was exploited? A topic, a profile?
Code injection in bbPress installs is usually a symptom of insecure shared hosting, not bbPress itself.
In reply to: posible attack and bbpress error.I’m pretty sure that’s not a problem security wise as far as bbPress is concerned.
That code you refer to is being rewritten for another reason at the moment.
- I have a project on the backburner which deals with this.
- This is a lot harder, but the user role map goes a long way to adressing this.
- It’s in the works for 1.0
You have to explicitly choose “Remember me” when you login. If that option isn’t there when you login then you need to update your template to match the default one in this regard.
I’m pretty sure this was a part of the last release.
In reply to: WordPress Changeset 8069 – No bbPress LoginYes, WordPress is changing it’s cookie structure yet again.
We will be up to speed with that shortly.
Keep in mind though that including WordPress inside bbPress is an incredible overhead for what is just a modification to the presentation layer.
The most lightweight solution is to create your own theme in my-templates which extends the default theme. Any file that is not found in your own theme simply falls back to using the default, so your theme could consist of as little as a style.css file (which could itself simply import the default themes style.css – see kakumei-blue theme for an example of how to do that), a header file and a footer file.
In reply to: Install problemsWhat version of bbPress?
Trunk is a bit broken.
The last release (0.9.0.2) should be fine.
In reply to: wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!Actually, the bbPress secret can live in the database. But you are right that the WPMU one cannot, mostly for login compatibility between blogs within WPMU.
Obviously you should choose your own secret and salt values, not the one’s given above.
Cookies in WordPress 2.5.1 are compatible with cookies in bbPress 0.9.0.2
In reply to: Integration with MU 1.5.1WPMU 1.5.1 is probably only compatible with bbPress 0.9.0.2
In reply to: bbPress 0.9.0.2 releasedYou need to upgrade WordPress as well to fix the cookie incompatibility.
In reply to: Dropping “MultiViews” support?You’ve identified another reason that I had forgotten about. URL customisation that you are talking about is close to impossible under MultiViews.
Based on all these comments I think we will be dropping it. Thanks for the input everyone.
In reply to: bbPress.comTalkPress is the name of the project to build a hosted version of bbPress. It is currently in development aiming for an initial beta release.
talkpress.com in it’s current state was funny back in January. It will probably change soon.
What versions of each are you running?
In reply to: Login issue for integrated wp/bbYou can have that configuration of domains.
You need to declare the cookie domain in each to be “.bootstrappingblog.com” (note the leading dot).
In reply to: bbPress 0.9.2 completely in italianI’ll let mdawaffe know as he controls access to that SVN repository.
In reply to: Where should I declare theme-specific functionsWe’ll probably add a “functions.php” for themes in the next version.
You might be able to get away with just using your header file in the meantime.