Hi, i have a plugin that will support this soon 
The plugin is named Gaming Codes. It’s for WP, but i have a stripped down version for bbPress. I’ll post it here soon.
The code he pasted, above, is missing the <?php … ?> tags, so I’m also getting compiler errors.
joneywalker4u, to remove the hyperlinkification of URLs for text inside of code tags, you could write a plugin that removes the filter that hyperlinkifies URLs for the entire post, and then create a new filter that splits the post into strings-enclosed-by-code-tags and strings-not-enclosed-by-code-tags, apply the filter that hyperlinkifies URLs to the strings-not-enclosed-by-code-tags, and then glue the strings together.
This is totally doable, but it seems like a lot of work, which is why I suggested the CSS approach…
Hey I’m been trying to get this to work also. And have posted to some other similar threads here, but there haven’t gotta a solution working.
Here’s what I’ve learned.
1. From what I gathered, the problem is with how bbPress redirects its pages. Even if you have the proper mod_rewrite rules, bbPress will automatically redirect the rewritten URL to the full URL that it thinks the page is supposed to have. This basically makes custom mod_rewrite useless.
2. You can prevent bbPress from redirecting by fooling bbPress into thinking it should have a different URL than its supposed to. You can do this by modifying the get_forum_link, get_topic_link, get_user_profile link, etc. functions in the template-functions.php file. The idea is to use pattern matching to strip out the base directory from the URL.
function get_user_profile_link( $id = 0, $page = 1 ) {
$user = bb_get_user( bb_get_user_id( $id ) );
$rewrite = bb_get_option( 'mod_rewrite' );
if ( $rewrite ) {
if ( $rewrite === 'slugs' ) {
$column = 'user_nicename';
} else {
$column = 'ID';
}
$r = bb_get_option('uri') . "profile/" . $user->$column . ( 1 < $page ? "/page/$page" : '' );
} else {
$r = bb_get_option('uri') . "profile.php?id=$user->ID" . ( 1 < $page ? "&page=$page" : '' );
}
$r = str_replace('forums/profile/' . $user->$column , "profile/" . $user->$column, $r);
return apply_filters( 'get_user_profile_link', $r, $user->ID );
}
3. If you strip out the base directory from the URL however, it makes bbPress think you’re no longer logged in, and you can’t log in. I still can’t figure out a fix yet.
Seems like a lot of people are having issues with mod_rewrite in bbPress. Hopefully the next update will resolve some of these issues.
Sambauers,
As you suggested, I was able to modify get_user_profile_link() function in template-functions.php to prevent the redirection. Mod_rewrite will now rewrite to the profile page properly, without redirecting it.
But now, it shows I’m no longer logged in when I’m on a rewritten page, even though I am. When I try to log in. It just reloads the page.
Here’s the mod in_user_profile_link():
function get_user_profile_link( $id = 0, $page = 1 ) {
$user = bb_get_user( bb_get_user_id( $id ) );
$rewrite = bb_get_option( 'mod_rewrite' );
if ( $rewrite ) {
if ( $rewrite === 'slugs' ) {
$column = 'user_nicename';
} else {
$column = 'ID';
}
$r = bb_get_option('uri') . "profile/" . $user->$column . ( 1 < $page ? "/page/$page" : '' );
} else {
$r = bb_get_option('uri') . "profile/" . $user->$column . ( 1 < $page ? "/page/$page" : '' );
}
$r = str_replace('forums/profile/' . $user->$column , "profile/" . $user->$column, $r);
return apply_filters( 'get_user_profile_link', $r, $user->ID );
}
My goal is create a short URL such as http://www.example.com/profile/username
Perhaps this idea of a single profile page for both WordPress and bbPress will be part of the recently accounted backPress.
It would great to have a profile link such as:
http://www.example.com/member/username
that works for both WordPress and bbPress. Instead of separate ones at:
http://www.example.com/forums/profile/username or
`http://www.example.com/author/username
I don’t want my text that i enter between
to be trated as hyperlink even if it is. What @bobbyh say will only change the formatting but not remove hyperlink.
I found my absolute path and resolved my problem.
<< Nub
So I noticed. But I found a kind of dirty hack that I used in the bb-twitter plugin. It works, but it’s not the best way to do it 
—
Rune
Is there a version 1.0 development plan anywhere? I’m curious what new features we’ll be seeing in bbPress.
Additionally, are there plans to update the web site design (like wordpress.org) and add a Codex?
That “future of bbpress” announcement in January was very exciting, but it doesn’t seem like much as happen since then. Other than the WP 2.5 integration of course, which is great don’t get me wrong.
Thx, i know, free webhoster 
but Firefox + Adblock + Noscript will fix the problem
Can you just use CSS to style links so they look just like your text.? If so, something like this might work (obviously modify this as appropriate for your theme):
.post code a, .post code a:link, .post code a:visited {
color: #9c0;
text-decoration: none;
font-size: 8pt;
font: 0.9em Monaco, "Andale Mono","Courier New", Courier, mono;
color: #000;
}
I’m having a problem with a fresh install of 0.9.0.2. After last step of installation…
Referrer is OK, beginning installation…
>>> Setting up custom user table constants
Step 1 - Creating database tables
>>> Create table bb_forums
>>> Create table bb_posts
>>> Create table bb_topics
>>> Create table bb_topicmeta
>>> Create table bb_tags
>>> Create table bb_tagged
>>> Added index wp_users UNIQUE KEY user_nicename (user_nicename)
>>>
>>>>>> Duplicate key name 'user_nicename'
Step 2 - WordPress integration (optional)
>>> WordPress address (URL): MYURL
>>> Blog address (URL): MYURL
>>> WordPress cookie secret key set.
>>> WordPress database secret set.
>>> User database table prefix: wp_
Step 3 - Site settings
>>> Site name: MYSITENAME
>>> Site address (URL): MYURL
>>> From email address: MYEMAIL
>>> Key master role assigned to existing user
>>>>>> Username: admin
>>>>>> Email address: MYEMAIL
>>>>>> Password: Your existing password
>>> Description: Just another bbPress community
>>> Forum could not be created!
>>> Key master email sent
There were some errors encountered during installation!
I should note that I assigned the key master as my admin user in WordPress. When I go to my forum I receive the following error….
Parse error: syntax error, unexpected T_STRING in /MYPATH/bb-config.php on line 22
mod_rewrite and wp_redirect don’t seem to like each other. I’m running into problems with the wp_redirect functions in bbPress redirecting the page after the URL has been rewritten, so that the URL changes back to the longer form.
For example, this mod_rewrite rule:
RewriteRule ^profile/username forums/profile/username [L]
will rewrite:
http://www.example.com/profile/username
to:
http://www.example.com/forums/profile/username
Except, that after its been rewritten, bbPress forces a redirection via wp_redirect, causing the URL in the browser window to change to the longer form. Any suggestions?
Commenting out lines 2061 and 2062 in the bbPress functions.php file will stop wp_redirect from redirecting the page.
if ( $check != $uri && $check != str_replace(urlencode($_original_id), $_original_id, $uri) ) {
//wp_redirect( $permalink );
//exit;
}
But this breaks authentication, and causes bbPress to think you are not logged in, even if you are.
Got it somewhat.
Edit style.css file in themes and enter
1)To align text both sides
.post {text-align: justify;}
2)To prevent overflow
.post code {
overflow: auto;
display: block;
height: auto;
max-height: 200px;
white-space: normal;
padding-top: 5px;
padding-bottom: 5px;
font: 0.9em Monaco, "Andale Mono","Courier New", Courier, mono;
line-height: 1.3em;
background: #ffffff;
margin: 2px 0;
}
Sill one more thing – how to remove hyperlink in the text entered. That is why <a href=" etc gets added to text I enter between code tag.
Yea, well, me and the SVN running at bbPress.org is not friends 
I will give it a try later!
—
Rune
This is not what I meant, haven’t you seen phpbb3 that sort of thing, scrollbar only under
and hyper links are not active in that box.
please people suggest.
try this then:
.post code {overflow:scroll;}
Use these functions:
bb_active_theme_uri(); // echos active theme URI
bb_get_active_theme_uri(); // returns active theme URI
bb_get_theme_uri( 'user#foobar' ); // returns given theme URI where theme is in "my-templates/foobar"
Note that 755/644 is a false sense of security.
I can write a file in any directory regardless of permissions on a server with posix support (any linux server) by being able to switch the PHP username to yours. However, Safe Mode and/or Open_base_dir will prevent the posix trick from working (unless of course the code is executing from your own directory)
I’m trying to integreate both the most recent wp posts and bb threads into a home (index) page.
You can see what I’m doing and where I am at with this attempt at: http://www.mealtrader.com/adbeef/
I get this error at the bottom of the page:
Fatal error: Call to undefined function query_posts() in …../public_html/adbeef/community/bb-templates/kakumei/home-page.php
I think it’s caused by my code not referencing the wp template, but I don’t know how to do that in PHP.
Any questions or ideas?
Thanks,
Change the attribute for overflow of the relevant class to like:
.post {overflow:scroll;}
Hi, installed newer version of bbpress 0.9.2.
Problem: text entered between backtricks`treated as code. Width is larger than page width. look here
[img=http://img140.imageshack.us/img140/6366/88594514gy3.th.jpg]
There should be a scrollbar for the purpose of restricting width and hyper links shouldn’t be active. How can I do that?