Hi everyone,
I am using WordPress 2.7.1 and bbPress 1.0-alpha-5. I am looking for a plugin – most likely for WordPress – that will add a topic in a forum when a post is published. This way users can discuss the post within the forum, rather than leaving a comment. I remember I had a plugin that could do this a while back, but I cannot find it, and it’s probably out dated by now.
Please let me know of any plugin that could do this.
It would be easiest to hard code them if they don’t change very often.
_ck_ described how to get bbPress information inside WordPress. Maybe something similar would work in an opposite fashion to get WordPress information inside bbPress:
https://bbpress.org/forums/topic/heres-how-to-show-bbpress-info-inside-wordpress-without-full-integration
I installed WordPress 2.7, along with BBpress 0.9.0.4.
Both my wordpress and bbpress use the same theme style.
However, the links in header and footer use permalink function get_page_link in WP. But this is not defined in bbpress.
Is there any way, we can fetch the permalinks defined for WP pages and display them on bbpress footer.
Any help will be grateful.
The class.bpdb-multi.php class is used everywhere.
Have you somehow accidentally entered your WordPress admin username and password in the WordPress user database settings area?
Hello,
i have just recently got bbpress alpha 6 to work with my installation of wordpress 2.7… just how long will it be until it is safe to move the integration to a live site?
thanks,
pvf
After some more digging, I’ve found that the perpetrator is the db_connect() function inside class.bpdb-multi.php. I don’t understand why that file should be in use on a non-multi WP/bbPress installation, but either way it’s that file that does the offensive db_connect_host() call with erroneous credentials, host, etc.
What’s really weird is that the front page of bbPress works, while opening a topic yields the “Access denied for user ‘admin’@’localhost’ (using password: YES)” error message. Why would class.bpdb-multi.php be in use on a topic page but not on the front page? Makes no sense.
I’m having the same problem and it seems that the WP integration for whatever mysterious reason forces the MySQL connection into “localhost” mode. I’ve configured both WP and bbPress to connect to another MySQL host, but still it seems like bbPress is trying to connect to “localhost”.
I added a print_r($args) inside the db_connect_host() function and found that the function is called twice and the first time the credentials, host, etc., are correct and the second time they aren’t. The second time the function is called, the credentials are for some reason set to the ones of the logged in user. So somewhere in the bbPress code, authentication is done not with the values stored in bb-config.php, but with the username and password of what’s stored in the session cookie and the host is then set to “localhost”.
I don’t know how to investigate this problem any further.
That makes sense, and I think it’s a really good way to say that neither platform has 100% of the things that anyone wants, hence the pluggable nature of them.
It sounds to me like you want BuddyPress without the WordPress MU capability, which is totally possible to do. I’m in the process of mirating a WP/BP integration to BuddyPress myself, and I think it’s exactly what I’ve been trying to modify WP/BP to do with plugins and hacks.
That’s a fair question, John. Blog apps are great if you want a place for a few privileged people to talk about what’s on their minds. Blog apps are not so great at managing discussions and comments from readers. Forum apps are great managing users and discussions. I considered dropping WordPress for bbPress altogether, but bbPress (and most forum apps) lacks many of the other features I want; listing of posts with full or summary text on the front page, image management, static pages, related posts plugins, etc.
How do people maintain and track their own conversations on the blogs they visit? Outside of third-party services like CoComment, it’s very laborious. Bookmark each page you post a comment on? I guess that works.
Really I’m just looking for a way to encourage discussion and make it easier for people to stay involved. You’re right, maybe I need to rethink my strategy altogether.
I did a little more searching and found a WordPress plugin that does almost exactly what I want with Vanilla: Janine for Vanilla
ipstenu: it was this http://ciarang.com/posts/mediawiki-with-wordpress and some adjustments:
1. I installed wordpress on /blog and mediawiki on /wiki and bbpress on /talk
-> for this I added an absolute path with the line $WP_relpath=’/var/www/html/krcla/blog’; and set the cookies to point to the root folder
2. some others that I can’t remember at this point..
The result is that MediaWiki ends up being somewhat heavier than a plain mediawiki, but by redirecting both bbPress and MediaWiki logins to WordPress, I get a single WordPRess login action -> logged in WordPress, bbPress, and two MediaWikis!
Hi there,
Question for all of you. I am currently using wordpress and bbpress for a forum and I want to know if its possible to transfer members/posts over from WP/BBPress to a PHPBB message board? I don’t know a ton about databases as far as back end coding etc, but I wonder if its possible and how easy/hard it would be to make it work?
Thanks for any information,
Adam
BBpress available as a install with wordpress and use the same template, if its made by the same people.
its a pain trying to look for a good template for both
i have spent some time now analyzing the code of bbpress and wordpress.
it seems to me that an update of the old bbpress code (version 0.9.0.4) is unfeasable, because sam already managed to succesfully integrate version 1.0 with wordpress 2.7.1
all you have to do in order to use bbpress alpha with the recent versions of wordpress is to follow the bbpress installation instructions and it will work out of the box.
there is still some work to be done. as far as i can tell, bbpress and wordpess use multiple cookies for multiple paths. the one they share is the one for the root path. so… if you login into wordpress, you won’t be logged in into bbpress admin section. this does not happen the other way arround.
it is not recomended though to use the alpha version in production sites. for now, it seems that a downgrade of wordpress would be the best solution.
Got BBpress and WordPress set up for a small school in Alaska. Almost ZERO customization (outside colors) since I just started using both WordPress and BBpress a month ago and I don’t know my butt from my elbow. But I have big grandiose ideas that hopefully will see the light of day (if my brain can ever absorb all of this).
I’m just happy they are both integrated with the user tables and (log–in/outs) are working perfectly. The school is happy so far too. Yay!
http://atheneum.org
I always scratch my head at this one and ask myself “what’s the point?”
Not trying to sound like an ass, but I really do not understand why.
Logically I think to myself that if you really want it to work that way, then why even use WordPress at all? Just use bbPress and have a forum sans all the blogginess.
I have the same question. The latest mod post regarding bbSync said “it’s broken right now.” Any other options?
Ideally, I would like a new WordPress post to create a new forum topic and for all comments to be handled by bbPress. Possible?
i am running wp 2.7 and bbpress alpha 6 with no issues… not really sure how i did it, but i’ll help if i can…
as far as i can see, by studying the code, wordpress has introduced a salt for hashing the passwords since 2.5
bbpress (my version is 0.9.0.4) has not updated it’s functions to include this salt.
the alpha release of bbpress 1.0 seems to take care of this problem, but the file structure, as far as i can see is completely different from the older versions, so a simple copy & paste wouldn’t do.
maybe the stable 1.0 release will take care of this issue, but since then (i don’t recommend using the alpha version on production web sites) i will try to modify the pluggable.php file of bbpress 0.9.0.4 in order to allow the usage of salts.
i’ll be back these days with further details.
I am currently running a website which was initially built around e107. I also have a forum (e107 plugin) integrated in that website which reached over 1,000 posts. I am now planning migrating the hole solution to wordpress and bbpress. The biggest issue was to preserve the existing data (users and posts). I tried looking for a tool that acomplished this, but it was all in vain. I really wanted to migrate from e107 and wordpress with bbpress seemed to be a really good choice so I have built some migration scripts. They are written in PHP and are released under GPL.
There are two scripts. One that migrates the users to wordpress tables, and the other that migrates the posts of the forums. I would like to share these scripts with the community, hoping that there are users that could use them.
Please let me know what is the preffered way to share them.
Thanks!
My BBPress installation cannot find my salt cookies even when I plug them into the install from wp-config.
They do not appear in my WPMU admin options menu.
I always get this message at the end of install:
>>> WordPress “auth” cookie salt not set.
>>>>>> Could not fetch “auth” cookie salt from the WordPress options table.
>>>>>> You will need to manually define the “auth” cookie salt in your database.
>>> WordPress “logged in” cookie salt not set.
>>>>>> Could not fetch “logged in” cookie salt from the WordPress options table.
>>>>>> You will need to manually define the “logged in” cookie salt in your database.
Forum could not be created!
Nevertheless, I get an email saying that the install was successful. But when I go to the BBPress admin in the WPMU dashboard it doesn’t see the installation.
Angie: I’ve not touched the htaccess file, and I probably need to do it. WordPress usually updates it automatically… what should I put in it? I want to use the name based option …/forum/first-forum.
For one, bbPress isn’t a WordPress plugin.
It should be in it’s own folder outside of the WP structure.
Sumit1988 has it right.
yokima, how did you share login with MediaWiki and bbPress/Wordpress?
Unfortunately this causes an error:
Fatal error: Cannot redeclare _http_build_query() (previously declared in E:wampwwwrs_prod_nextforumbb-includesbackpressfunctions.compat.php:21) in E:wampwwwrs_prod_nextwp-includescompat.php on line 45
You could use create a new Role, and then restrict access to a specific forum only to people in that role or higher using Hidden Forums:
https://bbpress.org/plugins/topic/hidden-forums/
You’d still need a hook into Paypal, if you wanted to automate purchasing of access to your premium forum… but you could take that code from some of the existing WordPress or WordPress MU programs out there?