thank you bbolman.. I was placing the code after that line, not before. That did it… but I had to disable “Ultimate Tag Warrior” plugin to keep from getting any errors.
Now, on to trying to customize the look of bbpress. Thanks again.
Yes, you add that line of code on the line directly before this line (I believe):
require_once( BBPATH . ‘bb-settings.php’ );
Make sure to change that piece of code to match the actual location of your file. When I put that code into my installation though, all I get are errors. I’ve found you can get away without it.
so1o, thanks for the reply.
when you say “include the wp-config.php in the config.php”… is that not what I did when I added the line of code:
require_once( '/home/content/j/z/l/jzlharvey/html/wp-config.php');
After i updated to 0.75 the You must log in to post. is no longer displayed.
http://trac.bbpress.org/changeset/580/trunk/bb-includes/template-functions.php
This was the change, I think there is a echo missing in line 138.
Staffan, are you using pretty permalinks, mod_rewrite?
from config.php:
// Set to true if you want pretty permalinks.
$bb->mod_rewrite = false;
what is your setting there?
great plugin, it cleaned up my front page quite a lot. Thanks
Bueller… Bueller… Bueller…
I think you should use a function like:
function apply_author_title_image( $r ) {
$r .= '<br>Your Image';
return $r;
}
add_filter('post_author_title', 'apply_author_title_image');
Just try logging in one time with their username with the wrong password and the links to recover password comes up. There is no ‘hard code page’ that I am aware of. That file is called off login page and has to pass the username to it ahead of time, so calling it directly won’t work.
Trent
I found the error. It was way above the function quoted. (A missing close quote in a switch statement.)
Now, I’m not sure where to place it in the code. What I want to do is place the graphic under the posters title. (ie. On this page a graphic would be displayed below the member’s name and the title like this:
thomasklaiber
Member
{GRAPHIC}
Hmm … which of the lines is line 82? I just can’t see any error, too.
I also put it into my Code Analyzer, the only strange thing it said was that you dont’t use the function variable $id.
I have no idea -.-
Peiqinglon wrote: I think it would be very cool to have a quote button on each post so you can quote what a person has said like in other forums. 
I agree as well. The way I just did it is the only way to do it right now (using blockquote on your server might be better).
Trent
I am attempting to write my first plugin. The idea is to display a graphic image for the posters rank. I keep getting this error.
Parse error: parse error, unexpected ‘=’, expecting ‘}’ in /home/brightan/public_html/bbPress/my-plugins/graphic-display-ranks.php on line 82
Here is the function that includes line 82.
function user_rank($id) {
$special_rank = get_special_rank (get_post_author_id());
if ($special_rank>0)
{
switch ($special_rank) {
case 1 :
$display_rank=$path_to_rank_images . $image_for_special_rank_1;
break;
case 2 :
$display_rank=$path_to_rank_images . $image_for_special_rank_2;
break;
}
}
else
{
$rank_count=get_post_count(get_post_author_id());
for ($i=1;$i<$num_ranks;$i++)
{
if ($rank_count<$rank_max[$i])
{$display_rank=$path_to_rank_images . $rank_img[$i];
}
else
{$display_rank="";}
}
}
return $display_rank;
}
What am I not seeing?
If some strings are not translated it’s cause they are missing to be included nto the internationalization functions, and this is a bug, You can open a ticket on trac about untraslated strings so they will be corrects annd included into pot. file.
For info about internationalizion and stuff you can refer to WordPress COdex searching for internationalizazion and localization, the info you will find there arcan be applied to bbpress also.
I have an existent wordpress install. I successfully installed bbpress and have the db pulling from wp install for the users. Now I want to try and wrap my wp around bbpress utilizing my existent header and footer in wordpress.
bbpress – v0.74
wordpress – 2.0.6
I have been searching everywhere looking where to start but alot say I need to set ('WP_BB', true); in the (bbpress) config.php. In this version of bbpress, it’s not in there. Am I missing something?
Oh nice!! Thanks for the link Michael!
I just manually adjusted the “latest” svn files lastnight, for .80 alpha, which is currently running on my forums now.. I manually implemented the [Resolved] codes back into the files, now I won’t have too!

Thanks again!
spencerp
That works well. The only thing is that people can still manually POST their own data to your root/registration.php file. Just because you don’t link to it anywhere doesn’t mean it’s gone
so1o has already graciously converted the old core code into a plugin. The initial release can be found https://bbpress.org/plugins/topic/16
Hi there,
I just finished the german translation.
Or I assume to, because it doesn’t work at all?! I followed teknoseyir’s steps and uploaded my de_DE.mo (generated by poEdit) into /bb-includes/languages, definded BBLANG as de_DE in my config.php, but everything is still in english. What’s missing? Running version 0.74.
Greets
Ike
Hahahaha.. I know.. tell me about it lmao..
I told this one guy on GoogleTalk before, I wish someone from Firefox corp, could sneak in as employment for a job in the Microshit Corp building, and some how replace/code in, for the Microshit IE6 upgrade tool.. and have it automatically upgrade them to a latest FF browser(s).. hahaha
spencerp
make it so that when someone is using ie6, it says “upgrade dammit!”
Hahaha.. Ah!! That’s right!! Thanks Trent..
Usually when we talked on GTalk, I was half asleep, and millions of things going on at same time lol..
Thanks again for clarifying this guys..

spencerp
bbPress 0.80 will not have the topic resolution stuff. There will be a plugin to re-implement it for those that want it.
Okay, Is there someone working on one at this present time, or..? I was just wondering, because for those downloading SVN commits of bbPress files.. it would be nice to have this plugin already uploaded and handy..
Especially with a few SVN commits back, that was partly, or totally removed already.. right? Thanks in advanced..

/Me didn’t upload that part of the SVN commit(s), but will apply changes manually if need be..
Well, I could just leave those files alone for my forums, and if any new SVN commits come through, for other code changes within those “specific files”.. I can manually apply the changes.. I just want to keep this for my forums, just incase needed.
spencerp
Nope….bbpress-integration goes in WP and wordpress-integration goes in bbPress! 
Trent