Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 6,276 through 6,300 (of 7,527 total)
  • Author
    Search Results
  • #49231
    benfremer
    Participant

    Same problem for me…I think step #3 in the integration ReadMe may need some changing…I didn’t see a dropdown option either.

    #49228
    flynn
    Participant

    Hey guys, here’s one for you:

    I’ve got BP 1.02, WPMU 2.7.1 (not updating yet :S) and BB alpha 6.

    Followed TheEasyButton tutorial to the T. And single sign on works! :D

    However, when creating a group, I still get this message:

    Attention Site Admin: Group forums require the correct setup and configuration of a bbPress installation.

    And I can’t post to the group forums.

    I’m losing my mind here. My Dev server works like a charm, but for the life of me I can’t get the live server to work, and I swear they have the same version / setting info.

    Thoughts

    http://thegsn.org

    #49222
    José M. Villar
    Participant

    Hi JJJ,

    1) I cannot be 100% sure, as soon as I installed WPMU locally, I continued with the bbP integration, did not stopped to check cookie behaviour.

    2 & 3) I am sure I did not go into neither of these two integrations, as I do not know what you are talking about :-(

    4) Nope, I never included that define line in my bb-config.php

    If you could be clearer about bbPress integration on “bbP side” and “WP side”, I can continue with your suggestions.

    TIA

    #49218

    I don’t use XAMPP, but WAMP should be pretty much the same.

    Can you confirm you ever had cookies working successfully? Even before bbPress? Sounds silly to check, but lets make sure it’s working correctly without bbPress.

    Do you have the BuddyPress bbPress Integration plugin on the bbPress side? Do you have the bbPress Integration plugin on the WordPress side?

    If yes and yes, the next round of trouble shooting is to make sure you have your edits exactly like the plugins say to have them.

    Since you’re using MU 2.7.1, you need to have

    define('WP_AUTH_COOKIE_VERSION', 1);

    in your bb-config.php. This will tell bbPress how to handle your integration cookies.

    That’s about all I can recommend for now?

    Burt Adsit
    Participant

    plrk noticed that with the bp enable bbpress plugin disabled that we lost usernames and avatars in group forums. This patch works for me with bp trunk and bbpress 1.0 in group forums.

    https://trac.buddypress.org/ticket/848

    #49215

    In reply to: BuddyBar for bbPress

    Rohan Kapoor
    Participant

    @ipstenu: i tried what you said but changing the document root also didn’t help. I am quite honestly stuck now!

    #49208

    In reply to: BuddyBar for bbPress

    russell-crosswy
    Participant

    Versions I’m using:

    WordPress MU 2.7.1

    BuddyPress 1.0.2

    bbPress 1.0.1

    #49206

    In reply to: BuddyBar for bbPress

    Rohan Kapoor
    Participant

    @John: Don’t worry too much. I’m trying it a bit myself! We’ll see what happens!

    #49204

    In reply to: BuddyBar for bbPress

    Rohan Kapoor
    Participant

    Hmmm! That is very interesting and it leads to some very though provoking stuff!

    I tried basic symlinks already linking the subdomains folder to the one that works. That didn’t work.

    What I’m gonna try is changing the docroot to the wpmu/forums directory and see if that works. This is getting complicated!

    #49203

    In reply to: BuddyBar for bbPress

    @Russel Crosswy, the reason deep integration doesn’t work when you use your http:// method is because you cannot include an external PHP script, you can only do it via an internal method. As soon as it crosses the HTTP, the file will exist but not get included by the server, so you’re not actually including that file at all.

    Which version of WPMU are you using?

    @Rohan, I’m curious to setup something like you have because it’s something I’d like to have eventually for myself also. I’m afraid I won’t have time today to set it up, but it is on my list of things to figure out.

    #49199

    In reply to: bbCode in Discussions

    plrk
    Participant

    This has somehow returned for me. I am running BuddyPress 1.0.2, WordPress MU 2.7.1, and bbPress 1.0.1. The [p]s show up in the sitewide activity for group forum posts, and in the group forums, but they don’t show up in the bbPress view of the group forums.

    I am using the buddypress-enable.php from the latest stable BuddyPress download. Is it really so that I have to upgrade the xmllib library? I do not have my own server, I am using a web host…

    #49198
    Sandeep Ramamoorthy
    Participant

    I use the BBpress integration plugin….

    #49197

    In reply to: BuddyBar for bbPress

    It could be because the ‘root’ of forums. is different than the root of wpmu.

    If the wpmu stuff is looking for root or relative drive mappings, then when you have the forums calling it from a folder outside the relativity of the wpmu install, it can’t find the files.

    That’s a WAG without enough coffee in my system. I wonder if a symlink would trick it…

    #49181

    In reply to: BuddyBar for bbPress

    Rohan Kapoor
    Participant

    Hey John,

    just for a test I installed bbpress at http://wpmu.zyrot.com/forums and the deep integration works fine. For some reason the different subdomains are throwing it off. Can you tell me if you can figure anything out because I need the different subdomains to work!

    Thanks!

    #49178

    In reply to: BuddyBar for bbPress

    russell-crosswy
    Participant

    Here is my bb-config.php file, with the unique keys and such taken out:

    <?php

    // DEEP INTEGRATION AT THE VERY TOP
    if ( !defined( 'ABSPATH' ) & !defined( 'XMLRPC_REQUEST' )) {
    define( 'WP_USE_THEMES', false);
    include_once( 'http://mydomain.com/wp-blog-header.php' );
    //^ wrong way for deep integration, but this keeps the forums integrated between BuddyPress and bbPress, but breaks the BuddyBar for bbPress plugin

    //include_once( '/home/username/public_html/mydomain/wp-blog-header.php' );
    // ^correct way to do deep integration, works with BuddyBar for bbPress plugin, but breaks forums integration between BuddyPress and bbPress
    header( "HTTP/1.1 200 OK" );
    header( "Status: 200 All rosy" );
    }

    // WordPress database integration speedup
    $bb->wp_table_prefix = 'wp_';
    $bb->wordpress_mu_primary_blog_id = 1;
    $bb->user_bbdb_name = '';
    $bb->user_bbdb_user = '';
    $bb->user_bbdb_password = '';
    $bb->user_bbdb_host = '';
    $bb->user_bbdb_charset = '';
    $bb->user_bbdb_collate = '';
    $bb->custom_user_table = '';
    $bb->custom_user_meta_table = '';

    // WordPress cookie integration speedup
    $bb->wp_siteurl = 'http://mydomain.com'; // no trailing slash
    $bb->wp_home = 'http://mydomain.com'; // no trailing slash
    $bb->cookiedomain = '';
    $bb->cookiepath = '/';
    $bb->authcookie = 'wordpress_******';
    $bb->secure_auth_cookie = 'wordpress_sec_******';
    $bb->logged_in_cookie = 'wordpress_logged_in_******';
    $bb->admin_cookie_path = '/forums/bb-admin';
    $bb->core_plugins_cookie_path = '/forums/bb-plugins';
    $bb->user_plugins_cookie_path = '/forums/my-plugins';
    $bb->sitecookiepath = '';
    $bb->wp_admin_cookie_path = '/wp-admin';
    $bb->wp_plugins_cookie_path = '/wp-content/plugins';

    /**
    * The base configurations of bbPress.
    *
    * This file has the following configurations: MySQL settings, Table Prefix,
    * Secret Keys and bbPress Language. You can get the MySQL settings from your
    * web host.
    *
    * This file is used by the installer during installation.
    *
    * @package bbPress
    */

    // ** MySQL settings - You can get this info from your web host ** //
    /** The name of the database for bbPress */
    define( 'BBDB_NAME', 'database_name' );

    /** MySQL database username */
    define( 'BBDB_USER', 'username' );

    /** MySQL database password */
    define( 'BBDB_PASSWORD', 'database_password' );

    /** MySQL hostname */
    define( 'BBDB_HOST', 'localhost' );

    /** Database Charset to use in creating database tables. */
    define( 'BBDB_CHARSET', 'utf8' );

    /** The Database Collate type. Don't change this if in doubt. */
    define( 'BBDB_COLLATE', 'utf8_general_ci' );

    /**#@+
    * Authentication Unique Keys.
    *
    * Change these to different unique phrases!
    * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/bbpress/ WordPress.org secret-key service}
    *
    * @since 1.0
    */
    define( 'BB_AUTH_KEY', '******' );
    define( 'BB_SECURE_AUTH_KEY', '******' );
    define( 'BB_LOGGED_IN_KEY', '******' );
    define( 'BB_NONCE_KEY', '******' );
    define( 'BB_AUTH_SALT', '*******' );
    define( 'BB_LOGGED_IN_SALT', '*******' );
    define( 'BB_SECURE_AUTH_SALT', '********' );

    define( 'WP_AUTH_COOKIE_VERSION', 1 ); //told this is needed for WordPress MU versions before 2.8
    /**#@-*/

    define( 'COOKIEHASH', '*******' );
    define( 'COOKIE_DOMAIN', '.mydomain.com' );
    define( 'SITECOOKIEPATH', '/' );
    define( 'COOKIEPATH', '/' );

    /**
    * bbPress Database Table prefix.
    *
    * You can have multiple installations in one database if you give each a unique
    * prefix. Only numbers, letters, and underscores please!
    */
    $bb_table_prefix = 'bb_';

    /**
    * bbPress Localized Language, defaults to English.
    *
    * Change this to localize bbPress. A corresponding MO file for the chosen
    * language must be installed to a directory called "my-languages" in the root
    * directory of bbPress. For example, install de.mo to "my-languages" and set
    * BB_LANG to 'de' to enable German language support.
    */
    define( 'BB_LANG', '' );

    $bb->bb_xmlrpc_allow_user_switching = true;
    ?>

    I realize I’m not incorporating the correct method for deep integration, but this setup is what keeps the forums integrated between BuddyPress and bbPress.

    If you have any suggestions on what I should check or look into, I would appreciate it.

    Using the bb-config.php file as it is now I can login and out of BuddyPress and bbPress without issue. Cookies are shared and work as expected. The BuddyBar for bbPress plugin seems to have revealed my deep integration issues.

    Thanks for any help!

    #49177

    In reply to: BuddyBar for bbPress

    Rohan Kapoor
    Participant

    @John: no problem. I don’t mind waiting. If you find anything out, I would really appreciate it. Thanks again for all of your help.

    @Russell: I would recommend it! It helps with troubleshooting.

    #49176

    In reply to: BuddyBar for bbPress

    russell-crosswy
    Participant

    @Russell:

    HOWEVER…

    I lose the forums function in BuddyPress groups

    Remember you also need the XMLRPC call in your bb-config.php as well for group forums.

    $bb->bb_xmlrpc_allow_user_switching = true;

    (goes right before ?> in bb-config.php)

    Do this again and make sure you have the XMLRPC line in bb-config.php

    I’ve had the line: $bb->bb_xmlrpc_allow_user_switching = true; is since the beginning.

    Should I just post my bb-config.php file to troubleshoot?

    Omitting of course the unique keys and such… :)

    #49173

    In reply to: BuddyBar for bbPress

    @Rohan Kapoor, sorry pal I do not yet, and I probably won’t have a chance to setup a similar installation until tomorrow. Hope you don’t mind waiting until then?

    @ipstenu, I really dislike core edits, so hopefully this makes it into 2.8.2. Glad you got it working though, I was starting to think I was crazy. :)

    #49171

    In reply to: BuddyBar for bbPress

    @John James Jacoby – Yes, but we’re illiterate!

    __constuct() is not the same as __construct()

    Fixed that and it’s fine :)

    #49169

    In reply to: BuddyBar for bbPress

    Rohan Kapoor
    Participant

    Hey John, you have any advice/help for me yet?

    #49168

    In reply to: BuddyBar for bbPress

    Did you modify two files, in a total of 4 places?

    #49167

    In reply to: BuddyBar for bbPress

    Interestingly… Now the forums give me this:

    Fatal error: Call to undefined method BP_Roles::__constuct() in /home/public_html/community/wp-includes/wpmu-functions.php on line 317

    ONLY if I’m logged in, though. If I’m logged out, it’s fine.

    #49162

    In reply to: BuddyBar for bbPress

    You’ll actually need to patch two CORE files, to make this work now.

    wp-includes/wpmu-functions.php on line 317 and line 352

    Change _init to __constuct

    And then in wp-includes/capabilites.php on line 84 and 99

    Change _init to __constuct

    Ugh… I hope this is fixed soon.

    #49160
    Greg
    Participant

    Sorry, I haven’t experimented with the facebook connect plugin.

    #49154

    In reply to: BuddyBar for bbPress

    With the new 2.8.1 and BuddyBar, I get this on my bar:

    Fatal error: Call to undefined method BP_Roles::_init() in /home/public_html/community/wp-includes/wpmu-functions.php on line 317

    I did apply this patch but no help in mudville. In fact, if I make THAT change, I get the error sitewide.

Viewing 25 results - 6,276 through 6,300 (of 7,527 total)
Skip to toolbar