Skip to:
Content
Pages
Categories
Search
Top
Bottom

Blockquotes are broken

Published on November 20th, 2008 by Ipstenu (Mika Epstein)

It seems blockquotes are broken on this board.

<blockquote>Test</blockquote>

gives:

Test

Matching forum and tabloid-newspaper blog

Published on November 20th, 2008 by

hello. …hoping you might take a quick look and give me a few critiques of my forum and blog.

i can only really get access to IE7 and Firefox, so wouldn’t mind knowing what it looks like in IE6.

the forum can be found here

http://www.londondrum.com/forum/

and the matching blog can be found here

http://www.londondrum.com/blog/

the blog is supposed to look like a British tabloid newspaper, and the forum was really just based on the same design — transported over but with different graphics and a new colour scheme.

they both integrate pretty good into the main site as well

Redirection to new bbPress board?

Published on November 20th, 2008 by fontadoni

Now that I converted my board from phpbb to bbpress I need to know how to redirect the old stuff to where the new board is (so people coming from google can at least get to the new bbPress index and not just get a 401 – which is what is currently happening). I suppose I need to do this in my htaccess file. Does anyone have the code for this? Thanks.

Where is the code for post editing? (need to modify it)

Published on November 19th, 2008 by

Hi,

Where can I find the code that generates the “edit a post” page?

The bbcode buttons and live preview plugins don’t appear to be working on this page and I’d like to add support for them.

Thank you,

WP 2.6.3 & bbPress 1.0A2 slight fix

Published on November 19th, 2008 by John Doe

Ok, it’s a slight fix since it’ll only solve one of the issues (I was having) with integration.

The problem was that I could not for the life of me force bbPress to set a ‘logged_in’ cookie with path ‘/’.

WordPress: domain.com

bbPress: domain.com/forum/

This meant once I’d logged in via bbPress, when I was browsing WordPress (although it set the ‘auth’ cookie fine and I could view wp-admin/) it ‘appeared’ that I was logged out (log in and register link, instead of log out and site admin).

I’d already tried this in bb-config.php, along with the other ‘integration speedups’ bbPress supplied;

$bb->sitecookiepath = '';

I’d also tried setting it to ‘/’ as well, but every time the cookie would not get set.

And here was the culprit; line 673 in bb-settings.php;

$bb->sitecookiepath = rtrim($bb->sitecookiepath, '/');

Then on line 735, it checks if $bb->;sitecookiepath is not set or empty. Otherwise, the ‘logged_in’ cookie for sitecookiepath will not get added to the $cookies array, and hence will not be set when wp_set_auth_cookie is called (specifically line 172, pluggable.php).

Changing the culprit to this fixed it for me;

$bb->sitecookiepath = '/' . trim($bb->sitecookiepath, '/');

The complete fix (for me) was to force all logins, registrations and logouts through bbPress with this in a .htaccess at the WordPress root;

RewriteCond %{QUERY_STRING} action=register

RewriteRule ^wp-login.php forum/register.php [R=301,NC,L]

RewriteCond %{QUERY_STRING} action=logout

RewriteRule ^wp-login.php forum/bb-login.php?logout=1 [R=301,NC,L]

RewriteRule ^wp-login.php$ forum/bb-login.php [R=301,NC]

This actually worked out better for me, since bbPress by nature allows you to skin the login, and users get to enter a little more info for their profile during registration.

Hope this of some help to others!

Cannot delete forum/category?

Published on November 19th, 2008 by John James Jacoby

Is it just me, or can you not delete a forum or category in the current alpha?

Either I am totally missing it, or it’s just missing, or this is a weird role issue that is broken for me?

bbpress 0.9 & wpmu 2.6.3 broken integration

Published on November 19th, 2008 by

Well, now I’ve gone and done it. I installed bbpress 0.9 first then installed WordPress mu 2.6.3. I then tried to turn on integration, and now my bbpress installation is completely broken. I cannot login as I get the error:

bbPress database error: [Table 'web_forums.wp_users' doesn't exist]
SELECT ID FROM wp_users WHERE user_login = 'admin'

bbPress database error: [Table 'web_forums.wp_users' doesn't exist]
SELECT * FROM wp_users WHERE user_login = 'admin'

My databases for WP and BBP are separated. Is there a way to reverse the integration? I cannot drop the database as there are existing users and posts.

I only realised this would be a problem after the fact, when I came here searching for a solution. If anyone is able to help me I’d greatly appreciate it. I’ve searched the forum posts extensively and looked through the bbpress configuration file to no avail. I hope someone can assist as I am at a loss on how to fix this.

Related threads in a WordPress post

Published on November 19th, 2008 by Silvanovicz

Hi guys – I’m looking for a way to pull in ~5 related threads in posts, in a similar way you can install a plugin to show related posts.

So if I were to write a post about Britney, it would show up to 5 threads in bbPress that have either been tagged with Britney or based on the content in the thread.

Any idea if such a plugin exists, or if there already is a way to do this?

User Roles Issue

Published on November 19th, 2008 by

I’m working a new version of my site, and I’m working in BBpress. I tried the latest stable version, but since I was already using WordPress 2.6.3, things didn’t quite work right. So I switched up to BBpress 1.0 Alpha 2, and things mostly work right.

However, I’m still facing a couple problems. Most importantly, the User Roles map doesn’t actually map users to the appropriate setting. It doesn’t map them at all, in fact. My admin blog users are still listed as just regular members on the boards. Does anyone know why that may be? I also can’t appear to edit the users to add the settings manually. The Software points me to “/profile/user/edit”, which doesn’t actually exist, apparently.

I realize that this is an Alpha version, which is fine, since the site isn’t live yet anyway. But I’d really like to figure out why users aren’t being correctly mapped. I entered all the settings correctly to my knowledge. Except the “WordPress “secure auth” cookie salt ” setting, which I didn’t appear to have. So I left that blank.

Any help would be appreciated, so I can start working on theme work for my site. Thanks!

Sharing Comments Between bbPress & WordPress

Published on November 19th, 2008 by

Another WP integration/bbSync question: I’ve read everything written here and now have a working test blog/forum setup (2.5.1 & .902) waiting to be ported to the main site.

Bar one issue: using bbSync, I can get WP comments showing in the forum without difficulty, but replies in the forum are not porting back into the WP comments.

Am I overlooking a way of getting the forum posts to port back to the WP pages?

If this is not easily possible, might there be an alternative, like for example using Simplepie to parse the feed from the thread and re-include it back into the WP page, or even an include or Ajax load; perhaps not perfect…

I don’t need user sharing as there are no WP users; trying for an anonymous friendly integrated forum/comments system. It’s just getting those replies back onto the WP side…

Skip to toolbar