Hey gerikg thanks for the help
I uploaded that file and activated it then made a new user but no dice, The user in bbpress didn’t get a role of member.
Any other ideas ?
Hey there, So i’m 99.99 ready to launch but having an issue with WordPress, BBpress, aMember
New users that signs up can’t add a new topic to the forum, wordpress and bbpress are sharing the same database, I figured out what the issue is, When a new user gets added it doesn’t assign it a role in BBpress i.e. Member, I have to manually set it each time so that the user can post.
I have set the user roles in the BBpress/Wordpress integration area, See > http://helpdock.net/screenshots/c905c801ef699307e0874064f7d379fb.png
But as you can see here the any new users do not get roles and I have to manually change the role, See BBpress user > http://helpdock.net/screenshots/0fd8d331e62c872981a29d2f256e25aa.png
But in wordpress the new member does get a role See > http://helpdock.net/screenshots/e436685a6d598b9178f93b7dfefa322f.png
Any ideas why its BBpress isn’t assigning the user roles so that a user can post a new topic?
Where have you installed WordPress and bbPress relative to each other, and what actually are your .htaccess settings for WordPress?
Mine is just:
# BEGIN WordPress
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
which seems to hand over nicely to the forums that are under /forums/ with their own .htaccess file
https://trac.bbpress.org/changeset/2349
That would explain why my trunk build fixed itself
I have the same problem with a WP/bbP integration… I just log in at bbPress every time, but yes, it would be nice to know what’s up.
I have the same thing…except I have it in a WP and BBpress integration. When I login as admin into WP and then go to the BBpress forum and click the admin link…nothing happens. When I first login at BBpress and click on the admin link it does take me to the dashboard. I think it’s a cookie thingy, but I don’t know for sure…can anyone help?
Or you can edit bb_get_topic_move_dropdown() and just remove $before and $after from $r. 
Hi,
Where do I find that file to edit?
I think Sam has a fix coming in 1.0.3?
https://trac.bbpress.org/ticket/1164
You’re right…those are the brackets I am talking about…looks so weird, when everything else looks great.
Thanks for the help!
you guys should be rewarded as the estimated inventory of the bbpress community, kudos 
btw, thank’s for the “whole” code and your precision in your replies kawauso, i’ll keep that in mind.
Oh right, that’s fine. The URL will be <your website>/bbpress if it’s uploaded into a directory called bbpress, or you can move all the files into the html directory if you want the URL to be <your website>.
Ashfame, I followed your tutorial for integrating WP with bbPress. That didn’t work, so I decided to install bbPress byitself without integration. But its still not working
I meant it uploads the contents of the folder separately in the HTML directory, not the entire folder that I unzipped. Is it to be uploaded in the HTML directory? How do I access it the first time, what URL do I use?
Thank you.
since my last try of getting help with my bbpress installation was a total succes I´ll try again.
How do I change the timestamp (“posted for XX minutes ago”) to a regular clock. “Posted 13.16, september 10th”
Thanks for your help
/Patric
Could you explain in more detail what you’re trying to do?
So, you basically need to setup your url with a www in front of the domain?
Im having the same issue. I setup
Everything correctly but nothing seems to work together.
Everything works great individually and its all updated to the newest versions.
Gerikg do you think you can take a look at my issue as well.
Thanks
Sure you can upgrade – just follow the instructions here:
https://bbpress.org/documentation/upgrading/
However, definitely back up your files first… as you can’t reverse the upgrade other than restoring an old backup.
Also – do you use any plugins? Many plugins don’t use in bbPress 1.0… so make sure your plugins are available in 1.0 (or that you can live without that plugin) before upgrading.
Good luck!
Most functions using globals, I think you need a class based forum script or you need to build your own bbpress objects
Hi
I have the old legacy branch of BBpress on my website and I want to move to the The latest stable version 1.0.2
I try to find some informations about that on the forum but nothing
I need to keep my users and topics data
I just want to know if it is possible and what is the process
thanks
Yes, indeed it is OFF, I thought it was the input class but it’s not … nvm …
You don’t need any integration plugins if you’re using WP 2.8.4 with bbP 1.0.2.
I’m afraid I don’t quite understand what you mean by it not uploading as a folder though? As long as you keep the basic structure (so you still have bb-admin, bb-includes, bb-plugins and bb-templates folders), you’ll be fine.
To access bbPress as an admin, you need to log into bbPress using the admin account and then a link will be displayed to the Admin panel.
http://phpxref.ftwr.co.uk/wordpress/nav.html?wp-includes/comment-template.php.source.html
In WordPress, comments_popup_link() takes three arguments that tell it how to format the output based on how many comments are present and runs a sprintf() with the appropriate output after retrieving the comment count.
The equivalent to get_comments_number in bbPress would be get_topic_posts, the rest of the function is either WordPress-specific or would need slight tweaking (like what the posts page would actually be).
register_globals is a gaping security flaw that’s been turned off in every recent PHP version. If you have it on, PHP takes anything passed by $_GET, $_POST, $_COOKIE and $_SERVER and turns them into global variables (i.e. ?book=1 in the $_GET array becomes $book = 1). I’d recommend turning it off ASAP.
The edit link turns itself off after a while, it’s not just limited to if anyone else has posted 
Ah, and good luck integrating bb-load.php, I could never get it to even play nice with WordPress.
couldn’t find the edit button :
I didn’t fix this issue yet but I got a hint.
the CodeIgniter’s input class (automatically loaded) destroys all global variables in the event register_globals is turned on.
hope someone else might find this useful …