yeah, it was a workaround before … i don’t think it matters much anymore since i changed .threadpost to display:block so it stretches all the way instead of depending on line-height.

and about the badges plug-in … i’m not sure what you mean (sorry, i’m very new to bbpress so i still don’t know my way around that much). I changed the profile/admin keys on functions.php
These forums use the Spanish Translation and some extra language tweaks i added on my own …
Forums for Temporada de Patos
the plugins i use are:
Allow Images
Avatar Upload
BB-Emoticons
BB-Ratings
BB-Signature
Front Page Topics
Indicate New Posts
Page Links for bbPress
Post Count
Private Message
Quicktags 4 bbPress
Quote
Simple Online List
And a Custom BB-Badge Plug-in i made 
The skin is an edit of the original bbpress theme, i made it to fit the main site (a WordPress blog). The icons are from the Tango Project.
The most noticeable changes in the layout are on the forum displays (front page and the one for each forum) and the profile.
Hi, same problem here in Japan (no wonder;-p)
The error is caused by a function bb_repermalink() in bb-includes/functions.php, which redirects the request to the correct permalink. You will see what is happening by setting the debug flag in your config file and access the tag page which causes the error
config.php
$bb->debug = 1;
Must be lacking utf8_uri_encode() somewher. I tried adding this right before the evaluation part at the bottom of the function and it seems to be working so far.
$domain = bb_get_option('domain');
$domain = preg_replace('/^https?/', '', $domain);
$check = preg_replace( '|^.*' . trim($domain, ' /' ) . '|', '', $permalink, 1 );
$check = utf8_uri_encode($check); // add this line
Well, I don’t really understand the structure of the bbPress source code so the solution here is something very opportunistic and may cause a side-effect.
Hi spencerp! 
I am not using WP, so the integration is taking place between MW and BB only. BB was already installed, and I have 26 users. Integration took place *after* I installed MW in the same database as BB.
citizenkeith, are installing MediaWiki with those changes and additions already done to it, before actual installing of it? Or are you doing these changes/ additions to MediaWiki *after* MW installation is done? Also, is all three (wp, bbpress and mediawiki) installed in under same database?
What I did, was, had bbPress and WP installed *first*. And integrated first. Then, I installed MediaWiki into the same database as WP and bbPress. Then applied those extensions and additions to MediaWiki…
spencerp
AstRonot: The keymaster is the user that was registered when you installed bbPress, unless you changed it afterwards.
Here’s what I’ve done so far:
Installed Mediawiki. Put Authpress in the extensions folder. Added code to LocalSettings.php. In that file, I tried both with and without these lines, uncommented and with my database information:
# Only include the following if you aren't using the same db as MediaWiki
$wgAuth->setAuthPressDBServer ('FIXME');
$wgAuth->setAuthPressDBName('FIXME');
$wgAuth->setAuthPressUser('FIXME');
$wgAuth->setAuthPressPassword('FIXME');
I added false, 0, as described here:
http://comox.textdrive.com/pipermail/wiki-tech/2005-August/000028.html
I’ve tried every combination, but MediaWiki still looks for the table mw_bb_users instead of bb_users.
My only option is to re-install MediaWiki without the table prefix, but I’d prefer to avoid that.
You can change bbpress theme at admin area
Hi;
I request change my theme but ı don’t know make it.How I change my bbpress theme?My theme;kakumei Request theme;Crystal I download ftp /forum/bb-templates/Crystal bu I don’t installation it.
I’m sorry.I can not speak english very vell:(
Installed bbpress, checked integration – everything worked fine, I was even able to post a few topics…
Now all of a sudden I can’t login – it started giving me the following:
Warning: Cannot modify header information - headers already sent by (output started at /home/skazka/public_html/forum/config.php:1) in /home/skazka/public_html/forum/bb-includes/pluggable.php on line 37
Warning: Cannot modify header information - headers already sent by (output started at /home/skazka/public_html/forum/config.php:1) in /home/skazka/public_html/forum/bb-includes/pluggable.php on line 37
Warning: Cannot modify header information - headers already sent by (output started at /home/skazka/public_html/forum/config.php:1) in /home/skazka/public_html/forum/bb-includes/pluggable.php on line 166
I haven’t modified any code, nor any file. It just started suddenly
.
What have I done wrong?
We should assume that codex.bbpress.org is out of the question for now, even though the content that we generate may end up there.
How about bbpulp.org ?
Not sure if I was completely clear on this one. If you view the bbPress forum page, then under the latest discussions there are stickies. I am not sure if this a feature unique to the forum located here, but when I turn a topic into a sticky it only sticks inside the forum it is registered, and it doesn’t stick in the latest discussion section (like the stickies on this forum’s latest discussions).
Thanks for the help.
Didn’t you say there will be no Automattic documentation before 1.0 release? Obviously codex.bbpress.org is the best, but that would be official … and we haven’t got official.
Ditto on the subdomain of bbpress.org.
I still think that codex.bbpress.org is still the best though to avoid confusion and keep the same design. Someone send something in the developer list again for some ‘more pointed’ discussion on this.
Trent
I have installed wpPHPmailer plugin with WordPress so that I can use an external SMTP server with password protection. The the same time I have integrated bbPress. But when a user registers, there is this message:
“Great! Your registration as was successful. Within a few minutes you should receive an email with your password.” .
But then there is a message on the top:
“Warning: mail() [function.mail]: Failed to connect to mailserver at “localhost” port 25, verify your “SMTP” and “smtp_port” setting in php.ini or use ini_set() in C:Program FilesApache GroupApache2htdocsmydomainforumsbb-includesregistration-functions.php on line 105″
Cannot I use wpPHPmailer with bbPress. Alternatively, how can I use the native sendmail or whatever functionality comes with bbPress.
Hi,
i’m having the same problem with my WordPress and bbPress integrated install – (href tags getting stripped and extra slashes getting added)
See here: https://bbpress.org/forums/topic/641 and here: https://bbpress.org/forums/topic/670
I’m running:
WordPress 2.1.3
bbPress 1.0-alpha
The 2 fixes worked for me but rather than editing the bb-includes/default-filters.php file.. i put the temporary fixes in a quick bbPress Plugin so that i don’t end up forgetting about the modifications after an upgrade and can now easily deactivate the plugin should this issue get permenantly resolved.
I put the plugin up online. If you’re interested, you can download it here: http://indyish.googlepages.com/fix-href-slashes.php
Can you create a ticket for this here. You can login with the same user/pass you use on this forum.
I could have sworn there was a trac ticket for this (whitelisting admin or keymaster, or trusted users), but I can’t find it now. I did find this relevant post in the forum:
https://bbpress.org/forums/topic/728?replies=3#post-4736
the answer is here
http://comox.textdrive.com/pipermail/wiki-tech/2005-August/000026.html
I’ve tried everything in the above thread, but I still get mw_ appended to the table (mw_bb_users).
2 Wittmania:
Demo: http://www.bbportal.org
2 Keith:
Yeah, I already thought about that too. Still thinking of how to make this happen. It is on my to do list…
2 Detrom and Maker:
I think this is a php5+ issue. I will take a look at it. It would help if you could install the private messages plugin and tell me if that plugin runs ok. You can get it here: https://bbpress.org/plugins/topic/20?replies=8
What makes you sure it’s not a bozo issue? Sounds exactly like one to me. If it is, the fix is here.
If you’ve got good reason to think it’s not a bozo issue, sorry. 😡
To make the fix work, thierry, you have to change the field to 0 and save with the plugin applied. It doesn’t automatically unmark them I think.
Sorry if this has been dealt with, but I’ve searched the forums for this and haven’t found anything. I’m pretty sure this is not a bozo issue.
Using bbPress 0.8.1 with WordPress 2.1
Just installed not long ago and am testing now…
I am able to add forums with no problem.
But, when I add a new post to a given forum, it appears to save (it does in fact, as I checked the db table). However, it doesn’t show up in the forum post counts on the front page, and unless I navigate back to the form where I added the post, I lose it completely.
I’ve tried subscribing to a new post that I just saved, and I get the message “Something strange happened, please try refreshing”. I do refresh, and the message goes away, but nothing else happens, and the post is still lost in limbo.
Any tags attached to the post do show up correctly –it’s just the post itself that is gone.
Thanks for any help!
Tim
Actually, I said something wrong. New posts I wrote are now considered as bozo. I feel that as soon as a user is considered as bozo, all his posts (and also pasts posts) should be marked as bozo, no ?
It seems that mdawaffe has lot to do on other projects. No correction after 1 mounth of bug submission, we feel abandonned.
I used this SQL query to mark all my bozoed posts (from the poster who have id=1, which is usualy the keymaster) to “normal” post :
UPDATE bb_posts
SET post_status=0
WHERE post_status=2 and poster_id=1
my posts after this “update” has not been bozoed. My profile page still shows a “1”.