Matt’s had already the idea.. it will be called freshpress…
I know.. the same that i did… but on WP SVN tags are update and all is correctly structured, it’s true that there is Nicolay that care for I18N etc quite all the time, here peopel are.. “multitasking” 
Arturo would you like to collaborate to the upcoming bbpress.it site that is going to start in the next months or so? If so, mail me.
i’m looking for function reference page and lists of filters/actions for bbpress and couldn’t find it. For wordpress we have something like this:
http://codex.wordpress.org/Main_Page
Is there anything like that for bbpress?
Thanks
That would be a great great thing
!! Reaalyy
.
ps : with bbpress post answers -> blog post comments
To get rid of the whitespace where the tags were, open up style.css and find this around line 215:
#front-page #discussions {
It looks like this now:
#front-page #discussions {
margin-left: 170px;
width: 590px;
}
Change it to this:
#front-page #discussions {
width: 760px;
}
That moves it over the the left, and makes it the full width (590+170 = 760.)
Not sure what other pages you want to do this on, but the procedure is the same.
You can just download WordPress and upload the smilies to a new directory. Then just change the plugin to point to the new directory at this line:
#
$wp_smiliesreplace[] = " <img src='/wp-includes/images/smilies/$img' alt='$smiley_masked' class='wp-smiley' /> ";
#
}
I have just installed this and I am an amateur if not total dummy at htlm, php and css. Is this a Pro Product or do you expect home users to use it as well? To use this I need to: (a) remove the “hot tags” section on the left. (b) Remove the Forums section. (c) Remove the Views Section. Sitting here staring the the php and the css is crazy. Where is the dummies guide that says how to do these simple things? Also this thing has no search on it which makes no sense. I can handle that with a google site search box on there but where is the code/theme for this please? Many Thanks…
Oh man forget it it’s crashing now at: http://willyhoops.com/bbpress/. Click on anything and it says topic not found. I am totally lost
Is this actualy working by now or is there no way emotions could be impelmented in to bbpress? Thats a big shame I gues …
Sorted it all out. You just need to delete all the tables starting with “bb” and re-install as usual. 
Thanks, everyone.
The site’s run by an aquaintance of mine – I get free hosting from him. I’ll take a looksie as to what value I put for the user prefix.
Watch this space.
I am well stumped, I really am 
I have read as much as I can find on issues with integration but still no love.
The setup:
Server IIS.
Latest WP.
Latest BB.
ALL secret codes match.
Config files have the suggested added lines of code.
Priv mappings are all set correctly.
So far though, I can get only one account to auto login into wp from bb, and that’s only if I log in through BB only, ie. if I login through WP, it does not carry over to BB but does from BB to WP. This user incidentally has an account setup both in BB and WP.
Any other BB account can not log into WP, regardless of being logged into BB first.
Any ideas out there? I’m loving both new versions, but I have close to 2000 users that I would like to allow contribution privs to WP with their existing BB accounts – it seems WP does not see any of the BB users.
Cheers!
Will, if you don’t remember what your table prefix is for WordPress, you can look it up in /wp-config.php. Most likely, you didn’t change it and it’s: wp_.
Youhou I think I found a more simple solution than merging bbpress and wordpress language file:
– Download your bbpress language file (for me fr_FR) then rename it using another name than the language file you use for wordpress (in my case my wordpress language file is fr_FR and I renamed it in ru_RU) then put it inside your /wp-content/languages folder.
– duplicate wp-blog-header.php and rename the copy as wp-blog-header-bb.php
– duplicate wp-config.php and rename the copy wp-config-bb.php
– open wp-blog-header-bb.php and replace the two occurences of wp-config.php by wp-config-bb.php
-open wp-config-bb.php and replace the line define (‘WPLANG’, ‘yourlanguage’);
by define (‘WPLANG’, ‘newnameofyourbbpresslanguagefile’); (in my case I replaced define (‘WPLANG’, ‘fr_FR’); by define (‘WPLANG’, ‘ru_RU’)
-In your bb-config.php replace wp-blog-header.php by wp-blog-header-bb.php
You’re done now each time bbpress loads wordpress will load your bbpress language file instead of the wordpress one.
I hope my explainations were clear.
A++
I’m pretty sure it was wp_user, although it may have been wp-user – I can’t remember exactly.
Chris you’re right. In BBpress I can use all the WP functions (ex. sidebar) but I can’t use any BBpress function (ex. Simple Online list code) in WordPress.
<?php login_form(); ?> <—BBpress code in wordpress will not work.
Thanks sambauers but I want the opposite/reverse. I want BBPress to load in full when people are in wordpress.
My theory is if this work I can put BBPress code in the WPsidebar .
require_once(‘path/to/wp-blog-header.php’); <– to put in BB-config
require_once(‘path/to/????????????.php’); <– to put in WP-config
Sorry Sam 
Sam, I read that page you linked, but I didn’t see instructions on loading bbPress functions inside WordPress which is what gerikg seems to be looking for (maybe call it reverse integration.) I see the instructions for accessing WordPress functions inside bbPress.
Do I just need to read it again?
Copy the same values from your wp-config.php file in the root directory and try again.
I’m a really new website owner. I don’t know a lot about manipulating html code. I’ve read the step by step instructions for installing bbpress but It’s not enough …I need indepth instructions.
This much I have done. Downloaded bbPress to my PC. Unzipped the file.
I have WordPress already on my web host account.
Where do I put bbpress? I would like to have them integrated.
Do I put it under /wp-admin/?
If you want varying HTML depending on what the forum id is, you should probably just use a conditional if/inside of one template file like so:
<?php if ($forum_id == 1) {
echo 'html1';
} elseif ($forum_id == 2) {
echo 'html2';
?>
Any other approach will probably lead to madness.
You can create a file called info.php and put this into it:
<?php
phpinfo();
?>
Then access that at http://www.example.com/bbpress/info.php and see if the getmypid function is disabled (just search that page for getmypid.) If it is, I imagine you can just remove that bit from class-phpass.php line 43.
$this->random_state = microtime() . getmypid();
In this instance, getmypid() just returns the pid of the process that called it and that is concatenated with microtime to provide a random number. You can use something else there and be fine, I think. Or, ask your host to enable it if it’s disabled.
It looks like your WordPress htaccess file is screwed up, as this link to a WordPress post doesn’t work:
* http://www.charitableorthodoxy.com/2008/05/13/hello-world/
Did you create an htaccess file for your WordPress install? Also, did you create one for your bbPress? If so, please paste in the contents of each htaccess file. If not, try creating one.
Yeah, assuming the themes have consistent HTML, in the header, put something like this:
<link rel="stylesheet" href="<?php if ($forum_id == 1) bb_stylesheet_uri(); elseif ($forum_id == 2) echo '/my-templates/kakumei-blue/style.css'; ?>" type="text/css" />
I didn’t test this, but I think that code should work.
Use PoEdit:
msgmerge --no-fuzzy-matching -o ru_RU.po wp_ru_RU.po bb_ru_RU.po