Search Results for 'bbpress'
-
AuthorSearch Results
-
July 17, 2009 at 6:03 pm #49539
TheEasyButton
ParticipantOh the irritation. *laughs*
TY for posting your instructions. I didn’t mean for you to go to so much trouble but I’m sure that so many people will find this useful.
I’ve only tried the new versions twice & after the mess with the last couple of integrations, I wanted to ask what everyone was using before I tried anymore. LOL
The bad part is, those would be my instructions. That’s how I do it everytime. Over & Over.
Quick question — Did you have to put the user switch code in the bb-config?
Again, thank you for the time you put into writing out your instructions.
July 17, 2009 at 5:18 pm #49538Rohan Kapoor
ParticipantThanks for that. I like step-by-step instructions!
July 17, 2009 at 3:38 pm #49535Graeme
ParticipantI have finally been able to duplicate the installation.
Here’s a relatively complete set of steps for guidance. This took me several hours to prepare and it can be easy to make a stupid error along the way. Just take it slow.
These steps are for WordPress MU 2.8.1, bbPress 1.0.1 and buddyPress 1.0.3.
1. Download and install WordPress MU 2.8.1
2. Install the “bbPress Integration” plugin version 1.0 via the “Plugins” -> “Add New” menu of your wordpress mu installation.
In the search box enter ‘bbPress Integration” and click “Search Plugins”.
Click the “Install” link for the “bbPress Integration” version 1.0 plugin.
Click the orange “Install Now” button.
Click the “Activate Plugin” link.
3. Download and install bbPress 1.0.1 in a sub-directory of your wordpress installation.
I chose the sub-directory “/forums/”.
4. Load up the bbPress installation script by going to http://<yourdomain>/forums/
5. Click “Go to step 1”.
6. Enter the database name, database user and database password that you used for your wordpress installation.
You will not usually need to click “Show advanced settings”.
7. Click “Save database configuration file”.
You should see a message “Your settings have been saved to the file bb-config.php. You can now continue to the next step.”
8. Click “Go to step 2”.
9. Next you add the integration settings. This is the important part!
– click “Add integration settings”
– click “Add cookie integration settings”
– you will be presented with a list of eight text entry fields
– the first two are for your wordpress and blog url. For each of these enter your exact urls. I just used the same value for each. They need to commence with http://
– for all the cookie values just enter “COMMENT OUT”. These will become reference points in the bbpress config file for later.
10. Click “Add user database integration settings”. This step is also important!
Leave the existing value in the “User database table prefix” field.
Enter the WordPress Primary blog id value “1” – THIS IS IMPORTANT.
11. Click “Save WordPress integration settings”
If all is well you should see this message.
Your WordPress integration cookie and database settings have been successfully validated. They will be saved after the next step.
Once you have finished installing, you should visit the WordPress integration section of the bbPress admin area for further options and integration instructions, including user mapping and the correct cookie settings to add to your WordPress configuration file.
12. Click “Go to step 3”.
– enter your site name
– enter your site url. I entered the url to the forums including the http://
– select the “admin” user for your wordpress installation
– enter a name for your first forum e.g. “Announcements”
13. Click the “Save site settings” button
14. Click the “Complete the installation” button
15. You should see a screen indicating installation has completed.
– click the “Show installation messages” option. Scroll through and see of any errors are reported.
16. At this point you should be able to login to your bbpress installation with your wordpress admin username and password.
17. Login to bbPress
18. Click the “Admin” link to go to the admin screen
19. Go to “Settings” -> “Writing” and enable XML-RPC publishing protocol (this is needed by buddyPress)
20. Go to “Settings” -> “Discussion” and enable pingbacks (I think this is needed by buddyPress ….?)
21. Go to “Users”
22. Go to “Settings” -> “WordPress Integration”
Set the mapping of bbPress roles to WordPress users roles
For the WordPress Administrator role select “bbPress Key Master”.
For all the others select “bbPress Member”.
Click “Save Changes”
23. Login to WordPress MU as the admin.
24. Go to “Plugins -> Add New”
25. Enter “bbPress Integration” and click “Search Plugins”.
– you should see “bbPress Integration” 1.0 listed
– click “install”
– click the orange “Install Now” button
– click “Acrivate Plugin”
26. Go to “Settings” -> “bbPress Integration”
Ensure there is a full url for the bbPress forums entered.
Select WordPress type “WordPress MU”
Click “Save Changes”
Copy the values listed in the dark grey box at the bottom of your page into your clipboard. There will be four lines that look something like this:
define( ‘COOKIEHASH’, ‘da4672dda66fd60a6b80e420d32ef26c’ );
define( ‘COOKIE_DOMAIN’, ‘.bp.dev’ );
define( ‘SITECOOKIEPATH’, ‘/’ );
define( ‘COOKIEPATH’, ‘/’ );
Don’t worry – these values will be different for your installation.
Open wp-config.php in an editor and insert these lines immediately after the opening “<?php” line.
Whilst you have wp-config.php open, copy the authentication keys to your clipboard. They look like this:
define(‘AUTH_KEY’, ‘800345c011dfad9261cedec0a3d914ffa1b40d67b23b66e4809797ce728f0b80’);
define(‘SECURE_AUTH_KEY’, ‘5d6d3f657c9fb496e3f5488044fc174c238554a1b5347eb633ea8baecf0dcc7c’);
define(‘LOGGED_IN_KEY’, ‘6749832494719d8217e06c233326cb86da9ec040b16f705156660e1642a5f0e8’);
define(‘NONCE_KEY’, ’87a5b149e95e0a13020541040353548eaf65b68452be91c685e96a7fbab685bc’);
define(‘AUTH_SALT’, ‘8ff197cc15f311c975bd14ce131e7872eb390706bd316f72435c081836d14f34’);
define(‘LOGGED_IN_SALT’, ‘642683992ae38da46082bf9850ab90273deb7d5d1034baf80a3fd32871b5e04a’);
define(‘SECURE_AUTH_SALT’, ‘7c066b9c14bd558737b74b76c77f928e3612935832a6a47bd70842e118c947fa’);
They will be different for your installation.
Save wp-config.php
27. Open bb-config.php
Find the lines containing the Authentication Unique Keys. They will have the values “COMMENT OUT” if you followed the instructions above. Comment these lines out!
Insert the lines from your clipboard into bb-config.php below the lines you commented out.
You need to edit each line you inserted and prefix the name of each constant with “BB_”
After doing that, the lines will be something like:
define(‘BB_AUTH_KEY’, ‘800345c011dfad9261cedec0a3d914ffa1b40d67b23b66e4809797ce728f0b80’);
define(‘BB_SECURE_AUTH_KEY’, ‘5d6d3f657c9fb496e3f5488044fc174c238554a1b5347eb633ea8baecf0dcc7c’);
define(‘BB_LOGGED_IN_KEY’, ‘6749832494719d8217e06c233326cb86da9ec040b16f705156660e1642a5f0e8’);
define(‘BB_NONCE_KEY’, ’87a5b149e95e0a13020541040353548eaf65b68452be91c685e96a7fbab685bc’);
define(‘BB_AUTH_SALT’, ‘8ff197cc15f311c975bd14ce131e7872eb390706bd316f72435c081836d14f34’);
define(‘BB_LOGGED_IN_SALT’, ‘642683992ae38da46082bf9850ab90273deb7d5d1034baf80a3fd32871b5e04a’);
define(‘BB_SECURE_AUTH_SALT’, ‘7c066b9c14bd558737b74b76c77f928e3612935832a6a47bd70842e118c947fa’);
Save the file and exit.
28. Clear cookies and Refresh for your domain. In Firefox you can clear cookies for a specific domain pattern.
29. Login to your wordpress installation as the wordpress admin user.
30. Assuming you managed to follow the setps above, If you go to your bbPress page you should find that you are logged in!
31. From WordPress Admin go to “Plugins” -> “Add New”
– in the search box enter “BuddyPress” and click “Search Plugins”
– find BuddyPress 1.0.3 in the list
– click “Install”
– click the orange “Install Now” button
– click “Activate Plugin”
32. BuddyPress is now installed. Follow the BuddyPress instructions for installing the themes to the correct locations and activate them.
33. In wp-admin go to “BuddyPress” -> “Component Setup” and check that the “bbPress Forums” component is enabled.
34. In wp-admin go tp “BuddyPress” -> “Forums Setup”
– ensure that the URL for the forums is entered
– ensure that the bbPress username and password details have been setup
– click “Save Settings”
35. Create a group with option selected for a forum.
36. Check that you can post topics in the group forum!
37. Take a break!
July 17, 2009 at 2:32 pm #49532Rohan Kapoor
ParticipantIf it does that, just create a new user as keymaster with another email. Login, integrate, change settings on your admin user to make him keymaster. logout, login as new user. Delete first keymaster! Life’s Good!
July 17, 2009 at 1:59 pm #49530Graeme
ParticipantUnfortunately, I’m having trouble duplicating the installation.
For my sucessful installation, bbPress presented me with a “dropdown” list allowing me to select the keymaster user. I then picked my WordPress admin user. It all worked well from there.
For the duplicate installation the bbPress installer shows text fields for entering the “keymaster” user details.
This process is painful!
July 17, 2009 at 12:44 pm #49528Graeme
ParticipantI have been able to successfully install and configure the following as a clean installation:
WordPress MU 2.8.1
bbPress 1.0.1
BuddyPress 1.0.3
I will post a *rough* outline of the steps for the installation. My installation is on a test server (Mac running php 5.3.0 under xampp ??? beta)
You need to get WordPress 2.8.1 and bbPress login integration working successfully first.
I’ll try and duplicate the installation and then post instructions. It should be relatively straightforward once you know the tricks.
July 17, 2009 at 10:47 am #49521In reply to: Ajax areas not working correctly
John James Jacoby
KeymasterIt is my experience that using deep integration can cause some issues with duplicate jQuery inclusions, but this is usually only on the bbPress side, not on the BuddyPress side.
WordPress 2.8.1 uses a new version of jQuery. I’ve ran into this as an issue mostly when there is either a JS error, or a conflict of some kind in the files. Can you verify for me that the jQuery file itself is being included correctly in the head area when viewing the directory page?
July 17, 2009 at 10:41 am #49520carinallc
Participant+1 on the topic. We’ve given up at this point as we can’t deploy anything other than the latest, non-beta releases.
July 17, 2009 at 9:06 am #49510In reply to: Please Help Fix Bugs for 1.0.4
danbpfr
Participantwpmu 2.8.1
bp 1.0.3 trunk version
bbpress 1.0.1
here is my bug list. I read the trac message mentionned above and made my own change. Anyway all i listed here is already not working.
I suggest you go to the site and terst yourself (it’s a test site straigth out of the box)
May this help.
Group page – main content
http://buddypress-fr.net/bpdemo/groups/groupe-de-tests/home/
Topic list is showing well.
This is a link from one of the topic. When click on it, it brings me to the homepage.
http://buddypress-fr.net/bpdemo/groups/groupe-de-tests/forum/topic/25
Same thing with the “view all topics” link
http://buddypress-fr.net/bpdemo/groups/groupe-de-tests/forum
Group page – Forum button
http://buddypress-fr.net/bpdemo/groups/groupe-de-tests/group-forum/
Menu is ok, but when i click on “forum”, the right col “main content” becames blank.
The admin bar disapear also
Group page – Wire
http://buddypress-fr.net/bpdemo/groups/groupe-de-tests/group-wire/
“view all” brings me to the homepage
Group page – create a group
http://buddypress-fr.net/bpdemo/members/admin/groups/create/step/group-details
The 4 menu options (details, settings,…)in maincontent are no more translated
After the group is created, when i go to the new group admin, the options are translated.
on step 2, the forum option is deactivated.
The permanent warning message about configuration is not necessary for ordinary user, because they can’t never install bbPress, even if they are blog admin or there own group forum master.
Anyway, this means to create a group first, then finish the whole register process, saving and to come back to the group to activate the forum. Not sure if this is a bug, but it’s anoying.
Once the group is created, the forum option is not appearing at all.
Group page – wire
unable to create a message. When posting, i flip to the homepage without any error message.
Group page – change group avatar
This is impossible ! I load a new image, loader is turning a little, and… nothing happens.
*****
I uploaded the 1.0.3 latest release version and changed the whole bp-theme/group folder from trunk to latest release.
Now, i can change group avatar.
Also, can you explain me the difference between the two folder, the trunk version has a very different content.
July 17, 2009 at 8:47 am #49509In reply to: BuddyBar for bbPress
nicholaszen
Participant@JJJ: This is the only thing I see in my logs.. If I loop it up, it says that it is ‘moved permanently’.. Does this mean I did something wrong?
[17/Jul/2009:10:44:31 +0200] “GET /my/forum HTTP/1.1” 301 236
[17/Jul/2009:10:44:31 +0200] “GET /my/forum/ HTTP/1.1” 200 –
July 17, 2009 at 7:19 am #49506In reply to: BuddyBar for bbPress
John James Jacoby
KeymasterThose of you getting white screens without any ability to see why, need to check your server error logs to figure out what’s killing it. 9 times out of 10 it’s probably an out of memory on the server side of things, as php probably isn’t getting enough memory allocated to it.
July 17, 2009 at 12:51 am #49497In reply to: BuddyBar for bbPress
nicholaszen
Participant@Rohan: Only the bbpress site dissapears.. The WPMU side has no problems.. But the bbpress site only dissapears with the code above.
July 17, 2009 at 12:31 am #49496In reply to: BuddyBar for bbPress
Rohan Kapoor
Participant@Mohit Kumar: you are missing the cookie hash, etc. in your wp-config.php in addition to the lines I told you to add to your bb-config.php. Install the plugin https://wordpress.org/extend/plugins/bbpress-integration/
to wpmu and add the code it tells you to to your wp-config.
@Nicholaszen: is your wpmu site disappearing or your bbpress site? or both?
July 16, 2009 at 10:21 pm #49493In reply to: BuddyBar for bbPress
nicholaszen
Participant@Rohan: Nope, that trick didn’t work..

But if I delete the following from the bb-config file the site shows up again:
if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {
define( ‘WP_USE_THEMES’, false );
include_once( ‘my/domain/wp-blog-header.php’ );
header( “HTTP/1.1 200 OK” );
header( “Status: 200 All rosy” );
}
July 16, 2009 at 8:24 pm #49487In reply to: BuddyBar for bbPress
Mohit Kumar
Participant@ rohan its my wp-config
define(‘DB_CHARSET’, ‘utf8’);
define(‘DB_COLLATE’, ”);
define(‘VHOST’, ‘no’);
$base = ‘/’;
define(‘DOMAIN_CURRENT_SITE’, ‘buzzlyf.com’ );
define(‘PATH_CURRENT_SITE’, ‘/’ );
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOGID_CURRENT_SITE’, ‘1’ );
define(‘AUTH_KEY’,
define(‘SECURE_AUTH_KEY’,
define(‘LOGGED_IN_KEY’,
define(‘NONCE_KEY’,
define(‘AUTH_SALT’,
define(‘LOGGED_IN_SALT’,
define(‘SECURE_AUTH_SALT’,
$table_prefix = ‘wp_’;
define (‘WPLANG’, ”);
if( $base == ‘BASE’ )
die( ‘Problem in wp-config.php – $base is set to BASE when it should be the path like “/” or “/blogs/”! Please fix it!’ );
define( “WP_USE_MULTIPLE_DB”, false );
define( ‘WP_AUTH_COOKIE_VERSION’, 1 );
if ( !defined(‘ABSPATH’) )
define(‘ABSPATH’, dirname(__FILE__) . ‘/’);
require_once(ABSPATH . ‘wp-settings.php’);
?>
July 16, 2009 at 6:37 pm #49471In reply to: WPmu BBPress BdPress – in which order?
Rohan Kapoor
ParticipantYou may want to talk a look at this thread.
July 16, 2009 at 5:48 pm #49468In reply to: Multiple BP Integration…
Rohan Kapoor
ParticipantI do know for sure that you can install multiple bbpress using the same userdatabase. You just integrate all of them into the same the wpmu install and that works. The problem really comes from multiple buddypress.
July 16, 2009 at 5:46 pm #49467In reply to: BuddyBar for bbPress
Rohan Kapoor
Participant@Mohit Kumar: I know this has to do with cookie integration but I have found that sometimes the buddybar doesn’t work if this code isn’t in your bb-config.php file if you are using WPMU 2.7.1:
//WordPress MU Cookie Integration
define( 'WP_AUTH_COOKIE_VERSION', 1 );If you could also post you WPMU wp-config.php file without the passwords and usernames it would be helpful as well.
@Nicholaszen: When I made that upgrade, I ended up having the same problem. I moved all of the plugins from /my-plugins/ to /bb-plugins/ and the themes from /my-themes/ to /bb-themes/. That managed to reset the site enough so that I could access the forum’s admin and from there I could re-activate the theme. Try that and let us know.
July 16, 2009 at 5:20 pm #49466In reply to: BuddyBar for bbPress
nicholaszen
Participant@i Rohan: admin get me the same lovely white screen.
Edit:
My apache acces log shows the following: 127.0.0.1 – – [16/Jul/2009:19:31:35 +0200] “GET /forum/ HTTP/1.1” 200 –
July 16, 2009 at 4:51 pm #49462In reply to: BuddyBar for bbPress
Mohit Kumar
Participantits 2.7.1 !!
July 16, 2009 at 4:50 pm #49461In reply to: BuddyBar for bbPress
Rohan Kapoor
Participant@Nicholaszen: see if you can get to /bb-admin/ if you can, then the chances are that the theme files got corruputed.. Just have it change the theme.
July 16, 2009 at 4:39 pm #49460In reply to: WPmu BBPress BdPress – in which order?
Ipstenu (Mika Epstein)
ParticipantI did move bp-themes to themes etc.. I will experiment a bit more,
Yeah, DON’T MOVE the folders! COPY the folders.
Copy, copy, copy!
July 16, 2009 at 4:34 pm #49459In reply to: WPmu BBPress BdPress – in which order?
kriskl
ParticipantHi
Yes, I still have this error with BP 1.03
I did move bp-themes to themes etc.. I will experiment a bit more,
My guess it, maybe BBPress is corrupting something
July 16, 2009 at 4:06 pm #49456In reply to: BuddyBar for bbPress
nicholaszen
ParticipantJJJ, my bad.. you’re right.. I was running 0.9x.. Now I upgraded to 1.0.1, but now I got a white screen.. Like R-A-Y says.. upgrading really isn’t any fun..!
July 16, 2009 at 3:15 pm #49451In reply to: BuddyBar for bbPress
Rohan Kapoor
Participant -
AuthorSearch Results