Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum'

Viewing 25 results - 18,126 through 18,150 (of 20,259 total)
  • Author
    Search Results
  • #49232
    benfremer
    Participant

    Hi Manoj…I am trying it your way, but then I don’t see the forums option part when creating a new group once I am one, and am confused…

    At

    “8. Head back to your BuddyPress installation and sign up as a new user. Once you have

    activated the new user, make a note of the username and password given.

    9. Log back into your bbPress installation as the administrator, and head back to the admin panel (/bb-admin).

    Go to the “Users” tab and look for the new user you signed up in step 8 in the list. Hit the “Edit”

    link for that user, on the end of the row.”

    I try creating a new user but it doesn’t show in bbPress…and then I am just fidgeting with settings, using the bbpress “Key Master” in the WP admin when trying to do the forums integration…does anybody know what else needs to be fidgeted manually to make it work?

    Thanks,

    Ben

    #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

    #49227
    Mariusooms
    Participant

    I imagine you have to use this function, which is a wp function for the current logged in user:

    <?php get_current_user_id(); ?>

    and have that set the bp id so you can use that id in bp functions.

    <?php bp_current_user_id(); ?>

    I tried a few things, but didn’t get any results unfortunately. Maybe a more experienced user could help. I remeber there are some answers in the forums as to how to pass the current blog user id as bp user id. Maybe do another search on that.

    Regards,

    Marius

    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

    Burt Adsit
    Participant

    Plrk you don’t need the buddypress-enable.php plugin anymore. It was a fix for the libxml issue. Disable that.

    I’m assuming you’re using a bbCode plugin of sorts? Which one? Are you using one on the forums as well?

    #49209
    r-a-y
    Keymaster

    If anyone could tell me how to remove the blog registration part from the mysite.com/register so that all the visitor can do at that point is to create a user account, I’d be thrilled! :-)

    Hi mlemberg, read this:

    https://buddypress.org/forums/topic/default-to-just-a-username#post-14828

    Requires hacking a core file and a little bit of CSS to hide the “Create A Blog” block.

    If anyone knows a better way, let us know.

    #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!

    #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…

    #49196

    In reply to: BP seems to mix themes

    Paul Wong-Gibbs
    Keymaster

    If you are using WPMU 2.8.1, then this is a known bug. There’s at least one other recent post on this forum, and there’s a ticket been raised for this on the BuddyPress bug tracker.

    #49186
    Andy Peatling
    Keymaster

    Help out then. Report bugs, fix bugs, submit patches, program new features on the roadmap, write documentation, answer questions on the forums.

    Sitting there twiddling your thumbs wondering when things are going to be done doesn’t help the project.

    #49183
    peterverkooijen
    Participant

    Thanks for this code, allenweiss! I still have to sort this out in my project, after my current day job deadline. Not looking forward to it…

    I had started several threads about this.

    #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!

    #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… :)

    #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.

    #49165

    Are you using deep integration, or normal?

    #49150

    In reply to: BuddyBar for bbPress

    Rohan Kapoor
    Participant

    I have wordpress mu installed at the subdomain http://wpmu.zyrot.com . All blogs are then located at http://yourbloghere.wpmu.zyrot.com . The Forums are fully installed at http://forums.zyrot.com and I was able to integrate users and cookies. I really would like to do deep integration so that I can have the buddybar and so that I make my own theme for the forums. If you can help me, it would be very appreciated.

    Thanks

    #49145
    Sandeep Ramamoorthy
    Participant

    Thanks DJ…

    I added that code in bb-config.php.

    But now,when i try to start a new topic,i get ‘There was an error posting that topic.‘ error…

    #49143
    Paul Wong-Gibbs
    Keymaster

    You missed a step. Put this line into your bb-config.php:

    $bb->bb_xmlrpc_allow_user_switching = true;

    #49140

    In reply to: Group forums meta data

    Kieran
    Participant

    Thanks a lot r-a-y. Not sure why but I can’t open that website, it redirects to http://www.proxyhosting.nl/redir.html. Is there anywhere else I can find the modified plugin?

    Cheers!

    #49129

    In reply to: BuddyBar for bbPress

    I haven’t tried deep integration with forums on a subdomain yet, so I can’t promise you a solution right away, but I would imagine it shouldn’t matter where your forums are, just as long as it’s including the file correctly.

    I’ll give this type of setup a try and see what I come up with.

    One question though… Are you using a wildcard subdomain setup, or do you simply wave wpmu setup in a subdomain?

    #49123
    TheEasyButton
    Participant

    From what I’m seeing in other posts, 2.8.1 isn’t quite compatible with BP yet. Keep an eye on this topic for updates.

Viewing 25 results - 18,126 through 18,150 (of 20,259 total)
Skip to toolbar