Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 63,751 through 63,775 (of 69,054 total)
  • Author
    Search Results
  • #49192
    Lisa Sabin-Wilson
    Participant

    Just launched this custom MU/BuddyPress theme last week for a client of mine:

    http://weearth.com

    Loving the latest release(s) of BP – keep up the phenomenal work!

    #49191
    gpo1
    Participant

    Had did Facebook start by the core of a few developers then other developers made plugins or widget … Just like wordpress only a few work on the core then others produce the plugins!

    Therefore if you want any plugin made for you, get a developer to make you one.

    #49190
    Deli Yaban
    Participant

    Buddypress rocks but I ll be waiting for wordpress+buddypress combination anyway…

    #49189
    mlemberg
    Participant

    Bump!

    Is there anyone who can help me?

    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! :-)

    I do not want to completely switch off the blog functionality from Buddypress. All I want is to prevent the option from occuring at the registration stage.

    Please help me – it’s kinda urgent! :-)

    #49188
    benfremer
    Participant

    Buddy Press rocks.

    One monetization idea for you guys — Akismet for message-spam…like that plague of MySpace message spam. I’ll hopefully have some better contributions for the BuddyPress pot-luck put together soon. :)

    mlemberg
    Participant

    So, any idea on how to do the exact opposite?

    I don’t want my users to be able to create blogs at the registration point, but I do not want to turn the blog feature completely off, as they should still be able to create blogs at later stages from within the Buddypress interface.

    Any good approaches?

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

    #49185
    Andy Peatling
    Keymaster

    Deactivate BuddyPress first.

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

    #49180
    jalien
    Participant

    The missing menus were probably because I didn’t to a full fresh install of buddypress. I was trying to keep a few core edits I had done and probably didn’t overwrite everything as I had thought. Seems to work now.

    #49179
    Walter24
    Participant

    Beat it!

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

    #49175

    There are quite a few places where WPMU 2.8.1 doesn’t allow for filtering particular hooks for security reasons, some of which BuddyPress relied on using; has to do with the new _transient functions would be my guess, but I haven’t figured out exactly where to start patching.

    #49172

    In reply to: Share This not Working

    Jeff Sayre
    Participant

    First of all, this more than likely is not an issue with BuddyPress, but an issue with the Share This plugin.

    You need to contact the developer of that plugin and ask them if their plugin works with BuddyPress. It does not mention that it does. Second, if you are running WPMU 2.8.1, then ask them when they plan to put out an upgrade for 2.8.1.

    #49170
    Jeff Sayre
    Participant

    John is correct. From the way you describe your needs, it sounds like you will be happy just using the multi-user version of WordPress (WordPress Mu). You do not have to install the optional BuddyPress plugin suite. You can always add it later if you want to provide your members with more features.

    #49164

    Well, the only reason for you to use BuddyPress would be if you intend on offering any kind of user centered features in the future. As it sits right now, it sounds like you’ve got exactly what you want, but in terms of forward growth and the ability to give your users a way to interact with each other in any way, that is where BuddyPress will really shine for you.

    #49163

    In reply to: Share This not Working

    3090861
    Inactive

    This could be a way, but not solve Buddypress problem, just make it work by other way..

    Somebody could help me to solve this Bug ?

    #49155

    BuddyPress 1.0.3 is due out soon to bump it into compatibility with MU 2.8.1.

    #49148
    Paul Wong-Gibbs
    Keymaster

    Only if you’re using it with WPMU 2.8.1. I’ve just finished writing https://trac.buddypress.org/ticket/846.

    #49147
    Obuisson1976
    Participant

    thanks for the workaround DJPaul.

    One question: All the fresh buddypress installation are affected with this bug ?

    I am still searching why the add_filter is ignore. This is very strange.

    #49146
    peterverkooijen
    Participant

    So we should all be enormously grateful for that. I don’t think threats to move another platform are really productive.

    I am grateful and Buddypress developers wouldn’t care whether I move to another platform or not. I was responding to John James Jacoby’s argument that people stick with WordPress because it has found the right balance.

    WordPress is evolving from blog software to a social networking platform with Buddypress. That puts the user at the center, which is a fundamental shift in focus. That’s why I keep hammering on member management and registration.

    I love the extensibility of WordPress/Buddypress, but if the foundation – member management – is a mess, that is a real problem that can force people to consider other options. I have not found good alternatives. Anahita Social Engine on Joomla could be one to watch.

    #49141

    In reply to: plugin errors

    rogiertje
    Member

    I’m having the same problem.

    Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 4864 bytes) in /storage/mijndomein/users/095442/public/sites/www.naarijsland.nl/wp-content/plugins/buddypress/bp-groups.php on line 560

    Made a php.ini file and placed it in wp-admin.. in the php.ini all the things Jeff sad..

    :-(( are there any other options?

    #49138
    Mariusooms
    Participant

    But buddypress and all other bp related plugins still activate with fatal error message.

    http://ywamheidebeek.org/temp/error-1.jpg

    Also some template code will stop the page from completely parsing and consequently not the whole page will be loaded.

    #49137
    Graeme
    Participant

    A little more info on this bug.

    For theme selection, the “BuddyPress Settings” page is looking at the themes in wp-content/themes, yet it loads the theme from wp-content/bp-themes.

    That means that to use a bp member theme, you need to have a copy of the theme in both the wp-content/themes directory and the wp-content/bp-themes directory.

    This means that the generated HTML ends up loading the CSS and templates from wp-content/bp-themes/<themename>

Viewing 25 results - 63,751 through 63,775 (of 69,054 total)
Skip to toolbar