Usually that is from white space at the end of a file you edited. There should be no blank lines or whitespace after the closing ?> in the config.php. Is that the problem?
Also, in your pasted config, there is no <?php – in the real file there is?
And, when you edited out the password, you accidentally removed the closing quote, right? In the real config.php the password is enclosed in single quotes?
define('BBDB_PASSWORD', 'pwpw);
^
Sure … but i had to make some hacks to the template-functions *shame* to allow for color-changing tag-cloud.
I don’t know better.
I use this theme at:
http://plugins.baptiste.us/forums/
matching the site theme itself. Works great. I should put together a diff of the modifications I made to tweak things like removing the urchin code and fixing a few other quirks….
1. The post only shows up for the user who posted
2. It’s not registered in the users postcount
3. It’s not registered as “last poster” in the topic list
4. The thread is not moved to the top in the topic list
5. It does not happen every time
6. It has happened to several users
I think I’m beginning to lose users over this
Anyone? Ideas?
I’ve been thinking about a good way to display the profile page for some time now. I’d like the avatar to be a fixed size and an extra field for some personal text, kind of like myspace or other communities. Do you think I’ll just have to dig in there or has someone already made all the hard work for me?
http://www.doublepeace.se/forum/tags.php
It’s quite a mess, I guess in both IE and Firefox
Any help with this? I’d like it sorted left-to-right by popularity (font-size) as well.
This seems to work on all versions:
.post { display: block; width: 100%; overflow-x: auto; }
Except! In older versions of IE the sidescrollbar is on top of the last line of text in the post. Any takers?
Very nice work. Extremely visually pleasing theme.
However you just might want to remove your google urchin tracking code from the template footer you distribute. Most bbPress newbies won’t catch that and it could get your Google account banned if they report it.
Actually, now that I look at theirs, mine uses a completely different technique and might be better in some ways…
Coming soon:
Theme List / Preview module for “My Views” plugin
I’m sorry I don’t. It works on my version of IE, but not the ones at my job. Which also makes this quite tough for me to tackle. I was hoping now, with CSS being quite new and all, the different browsers would embrace using the same standards 
Anyway, maybe the overflow-y: hidden is what hides the content below?
Thank you louisedade! I really appreciate this!
hi,
this runs bbpress:
http://support.technorati.com/
as does this:
http://support.technorati.com/faq
i had to change a lot of bbpress auth/cookie code in order to integrate w/ technorati member authentication, member profiles, member profile pics, global templates and so on; but these bbpress installations have been up for six months or so without a hitch. thx!
Nice! Looks cairoshell inspired.
(oh and yay Wales! Go Cardiff!
The RSS icon is actually CSS 
All you need to do is remove it from the stylesheet.
I guess I could move it to the bottom somewhere.
My advice is don’t try to change bb_repermalink().
Just to qualify myself, I rewrote bb_repermalink() a while back to implement slug-based permalinks. It’s a tricky beast, and the most complex part is the profile-page case.
But if you must, then you should start by turning debugging on $bb->debug = 1 in config.php should do it. Then when you hit your link you should get some readable debug info at the top of your page.
The critical part of stopping the redirect is on line 1708 of bb-includes/functions.php, you have to make that condition happy to stop the redirect to it’s preferred permalink location. That may involve simply modifying the get_user_profile_link() and also the get_profile_tab_link() functions, but I’m not 100% sure about that.
Awesome! I learnt something new ([^/]+) .. very cool.
Ok the rewrite worked.
Now just to figure out this repermalink…
Any ideas guys? I’ll go look around myself in the meantime
Found my fix after some digging.
edit forum.php
see where this part is near the top
</table>
<?php endif; ?>
<?php if ( $topics || $stickies ) : ?>
change it to this:
</table>
<? global $forum; $forum = get_forum( $forum_id ); // fix for 0.8.2.1 sub-forum bug ?>
<?php endif; ?>
<?php if ( $topics || $stickies ) : ?>
it’s related to this bug which is fixed in the trunk (supposedly)
https://trac.bbpress.org/ticket/704
Notepad.exe 
But more seriously some people like TopStyle.
There is also one or two Firefox plugins that let you change CSS dynamically – as you edit it, the page updates so you can see it in realtime. Very handy.
Hmm, searching brought me to this:
https://bbpress.org/forums/topic/using-rss-feeds?replies=5
Sounds like you’d be happy with a hack, which is really a bad idea, and this is really better suited to a plugin, but I am still looking for where you’d make the exact change in the core.
In looking at this, I realized the RSS feeds for my forum are broken, so I’m not much help. Searching the code at trac.bbress.org for things like get_recent_rss_link (which is where the URL for the Recent Posts RSS feed comes from I think doesn’t give me any results. It seems the search there does not search the code, just the tickets? I read the help but it wasn’t telling me what I wanted to hear 
Maybe I’ll check out a new copy and grep through it to see where to hack. Sorry I can’t be of more help. I don’t know the answer but I’ll try to help.
I use a similar setup with the root folder of my domain as wordpress, then a subfolder for bbpress. So I have:
http://www.domain.com/
http://www.domain.com/bbpress
In my WordPress Control panel under options, both URLs are set to http://www.domain.com with no trailing slash. I noticed in your config this URL has a trailing slash:
$bb->wp_home = 'http://www.subventions.fr/';
Maybe that is causing a problem?
In fact, in the source of your WordPress site, there are a bunch of links that result in a 404, and they all have wordpress in the URL.
404 Page Not Found:
http://subventions.fr/wordpress/
So, in your WordPress control panel, I suppose this could be wrong:
Options->General: WordPress address (URL)
I think your problems exist with the WordPress setup, and they are showing up now with bbPress integration.
This does not appear to be correct:
$bb->wp_siteurl = 'http://www.subventions.fr/wordpress';
Your wordpress site comes up at http://www.subventions.fr/ so the wordpress part is superfluous. I think you’ve got a path problem somewhere. Normally you install bbPress like this:
/var/www/subventions/wordpress/
maps to http://www.subventions.fr/
/var/www/subventions/wordpress/forum/
maps to http://www.subventions.fr/forum/
forum is a subdirectory of wordpress in a typical integrated setup. Is that your setup? If so, then your config is wrong.
Add this to your sites root directory .htaccess file.
This assumes that your bbPress install is in a subdirectory of your sites root called “forums”.
These rules need to be added before any WordPress rules.
The rewrite will work, but bb_repermalink() will change the URL so that it appears as it normally would.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^users/([^/]+)/page/([0-9]+)/?$ /forums/profile.php?id=$1&page=$2 [L,QSA]
RewriteRule ^users/([^/]+)/([^/]+)/?$ /forums/profile.php?id=$1&tab=$2 [L,QSA]
RewriteRule ^users/([^/]+)/([^/]+)/page/([0-9]+)/?$ /forums/profile.php?id=$1&tab=$2&page=$3 [L,QSA]
RewriteRule ^users/([^/]+)/?$ /forums/profile.php?id=$1 [L,QSA]
</IfModule>
I want to create a new user role on my forum, as a basis for fiddling with the private forums plugin. Essentially I want to be able to give some users on my forum a specific role (in addition to ‘member’) that will allow them to access specific forums without giving them mod/admin powers. I’ll need more than one new role (it’s for a Guild Wars alliance forum, and each guild needs to have its own private section).
I’m fairly confident as to how to modify the private forums plugin to enable what I want – all I need to know is how to create the new user roles to enable this.
I’ve managed to establish that add_role is the bbPress function I want, but (knowing absolutely no php) I have no idea how to use it. Can anyone help me out? Thanks
Not that I know of, I was looking for one and was planning one as my first plugin before we decided not to use the system on my forums
.
I say go for it
, my current bbpress motto is: “If _ck_ did it, it’s good”… So I trust you more than I trust myself.