Skip to:
Content
Pages
Categories
Search
Top
Bottom

Display avatar in header

Published on September 27th, 2007 by

At my site http://www.doublepeace.se , when you log in, I’d like to have the users forum avatar displayed in the header. I tried just pasting <?php post_avatar(); ?> up there, and that didn’t work :D

Support Forum & My Views Compatibility

Published on September 27th, 2007 by

I have both the My Views and Support Forums plugins installed. They work well together except for 1 thing. Both plugins add a new filter to bb_views.

If both plugins are running the new views from My Views are the only ones to show up. The Support Forums views are not listed. After poking through the code I was able to fix it by making sure that the Support Forums bb_views filter was added AFTER the My Views bb_views filter. To do so edit support-forum.php .

Replace line 432


add_filter('bb_views', array(&$this, 'addViews'));


With


add_filter('bb_views', array(&$this, 'addViews'), 200);


You should now be able to see the views from both plugins.

I’m no expert, but it seems like when My Views is adding my_views_init to the bb_views filter its overwriting whatever Support Forums has already added to the filter. Just a guess. I’m sure ck, so1o, mdawaffe, or SamBauers will know exactly what is going on.

Enjoy!

Trouble Logging Out

Published on September 27th, 2007 by

I’ve just installed bbPress for the first time at http://rudycarrera.com/bbpress, and it looks like it’ll be a fun program to use. However, I received this strange error message when trying to log out:

bbPress database error: [Table ‘rudycar4_bb.bb_online’ doesn’t exist]

SELECT * FROM bb_online WHERE user_id = 1 LIMIT 1

Warning: Cannot modify header information – headers already sent by (output started at /home/rudycar4/public_html/bbpress/bb-includes/db-mysqli.php:158) in /home/rudycar4/public_html/bbpress/bb-includes/pluggable.php on line 168

How do I fix that?!

bbPress 0.8.3 is compatible with WordPress 2.3

Published on September 27th, 2007 by Michael Adams (mdawaffe)

See the release announcement.

Integration bbPress functions in WPMU

Published on September 27th, 2007 by

bbPress is installed in /forums and WPMU is installed in /blogs .

The cookie and database integration works fine.

I am able to access bbPress functions from within WPMU by adding this to the end of /blogs/wp-config.php

// Include bbPress functions in WPMU

define('WP_BB', true); // Avoid duplicate function declarations

require_once( ABSPATH . '../forums/bb-load.php');

I’m trying to add WPMU functions to bbPress. I’ve tried adding this to the beginning of /forums/config.php . I’ve also tried putting this in the beginning of the file.

require_once( dirname(__FILE__) . '/../blogs/wp-blog-header.php')

When I go to /forums/ I’m redirected to the WPMU sign up page (/blogs/wp-signup.php?new=%2F).

I’ve also created a simple file ( /test.php ) and tried to integrate it with wpmu. It it also redirected to the WPMU sign up page.

Test Start

<?php

require_once( dirname(__FILE__) . '/blogs/wp-blog-header.php');

?>

Test End

Do I need to create a WPMU rewrite rule in the wp_1_options rewrite rulerecord? There shouldn’t be any need for an .htaccess rewrite rule since /forums and /blogs are not in subfolders of either.

Any ideas how to make this work?

Simple registration

Published on September 26th, 2007 by txerdiakov

Hello

Somebody knows if there is a plugin or is going to be added in the next version a system to simplificate the registration process?

It would be great one of this things:

1- anonymous post, just put my name

2- i have to register, but I can choose my password and I don’t need to wait for a registration mail.

The main problem I have is that my users are lazy, so if I make them register and wait for a password they are going away…

Thanks for your comments.

Change password: no error if new passwords don’t match

Published on September 25th, 2007 by

When a user changes their password on the profile: edit page, they need to type it in twice, and the two new passwords must match, before the new password is accepted. That’s fine – what I would expect.

What I didn’t expect is that IF the user types only one password in, or the two passwords don’t match, they are returned to the profile page with no error message. I would have thought it would give a “new passwords don’t match” error. As it stands, it actually looks like the passwords were changed successfully, but the passwords were not changed in db.

Does anyone know anything about this?

WordPress Integration

Published on September 25th, 2007 by

I am trying to make my wordpress blog integrate with bbpress but I think their might be a problem. I have two wordpress blogs in my webserver so maybe bbpress dont know with table to look.

This is if I log in first in bbpress without login in the blog

bbPress database error: [Table ‘libreexp_bbpress.wp_users’ doesn’t exist]

SELECT * FROM wp_users WHERE user_login = ‘admin’ AND SUBSTRING_INDEX( user_pass, ‘—‘, 1 ) = ‘fb756366af4998835a845e97addc3a3b’

bbPress database error: [Table ‘libreexp_bbpress.wp_users’ doesn’t exist]

SELECT * FROM wp_users WHERE user_login = ‘admin’

Log in Failed

This is if I log in to the blog first and then go to the bbpress

bbPress database error: [Table ‘libreexp_bbpress.wp_users’ doesn’t exist]

SELECT * FROM wp_users WHERE user_login = ‘admin’ AND MD5( user_pass ) = ‘d465d8c05bbf7c921e1fad84d4358e44’

bbPress database error: [Table ‘libreexp_bbpress.wp_users’ doesn’t exist]

SELECT * FROM wp_users WHERE user_login = ‘admin’ AND MD5( user_pass ) = ‘d465d8c05bbf7c921e1fad84d4358e44’

This is my conf file

// The rest is only useful if you are integrating bbPress with WordPress.

// If you’re not, just leave it as it is.

$bb->wp_table_prefix = ‘wp_’; // WordPress table prefix. Example: ‘wp_’;

$bb->wp_home = ‘http://macuserboricua.com’; // WordPress – Options->General: Blog address (URL) // Example: ‘http://example.com’

$bb->wp_siteurl = ‘http://macuserboricua.com’; // WordPress – Options->General: WordPress address (URL) // Example: ‘http://example.com’

Help please I would love to mac this two work together

PHPBB3 Converstion

Published on September 25th, 2007 by

We are excited about the possibility of converting from PHPBB3 to BBPress. However all the discussions about conversion seem to surround previous versions of PHPBB. Am I missing an appropriate thread? Does anyone have any suggestions?

Does anyone know if somebody may be working on this?

Thanks

How do I get my forum to look like this

Published on September 25th, 2007 by

I installed this cool forum but doesn’t look like it’s actually part of wordpress and I am stuck on a few thing, I hope you can help.

Where it says “$bb->wp_table_prefix” – where do I find the prefix?

$bb->wp_home & $bb->wp_siteurl – that is just my site url only, nothing more – http://www.blah.com

Once I do the above how to I make the forum part of wordpress, will it automtically look like this forum?

Skip to toolbar