Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 63,076 through 63,100 (of 69,044 total)
  • Author
    Search Results
  • #51083
    davetesh
    Member

    No right after i installed it I went to plugins and clicked “Activate” under Buddypress and then all of a sudden thats what it shows me and I can’t do anything in my Admin section. If I need to edit something or w/e I need to delete buddypress to be able to access my admin section properly. Right now everything is blocked that is the only message it shows on all pages in the admin section.

    #51082
    gerikg
    Participant

    did you recently deactivate buddypress?

    #51081
    Korhan Ekinci
    Participant

    Thanks Jeff, I created Ticket #924 for this issue.

    #51079
    Jeff Sayre
    Participant

    Two questions:

    1. Does this issue go away if you switch to the default themes that come with BuddyPress?
    2. Are there any errors showing up in your log files?

    #51078
    Jeff Sayre
    Participant

    That is more than likely a bug. Could you please post a new ticket in BuddyPress trac. You use the same login credentials for trac as you do for this site.

    #51077
    Jeff Sayre
    Participant

    As r-a-y points put, Mark Jaquith, one of the few lead developers for WordPress, was hired to build a highly-customized version of WPMU + BuddyPress for Gigaom. Mark of course is intimately aware of the intricacies of the WP codebase and I’m sure had an easier time customizing the project than would the vast majority of coders.

    But, the Gigaom site does demonstrate what is possible with WPMU + BP if you are willing to become well-versed in the codebase or have deep-enough pockets to hire out professional talent.

    #51073
    gerikg
    Participant

    JJJ this what happens when I use that plugin

    Warning: require_once(BACKPRESS_PATH/class.ixr.php) [function.require-once]: failed to open stream: No such file or directory in /homepages/0/d188981313/htdocs/website/mu/wp-content/plugins/bpgroups/oci_bb_group_forums.php on line 30

    Fatal error: require_once() [function.require]: Failed opening required ‘BACKPRESS_PATH/class.ixr.php’ (include_path=’.:/usr/lib/php5′) in /homepages/0/d188981313/htdocs/website/mu/wp-content/plugins/bpgroups/oci_bb_group_forums.php on line 30

    #51072
    peterverkooijen
    Participant

    Rogercoathup, if I can figure out this plugin, autogenerating a username from fullname is probably a small step that can be included in the same plugin. The big question is how to take fullname from the registration input (field_1) to do stuff with in a function. I think I’m getting closer, after about four months…

    Will get back to that later in the coming week.

    r-a-y, I doubt GigaOm would be eager to share their trade secrets. I’m also a bit of a potential competitor to them. Shh…

    #51071
    r-a-y
    Keymaster

    @Peter + Roger,

    You might want to pick Mark’s brain as to how he created the registration system and removed the username:

    http://markjaquith.wordpress.com/2009/05/28/gigaom-pro-launches-on-wordpress-and-buddypress/

    #51070
    r-a-y
    Keymaster

    Hi Roger,

    Try 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 there’s a better method, let us know!

    #51068

    I used Burt Adsit’s BPGroups plugin to achieve this a few months ago. It helped to pull all user data over and transfer the XProfile data into a deeply integrated bbPress installation.

    In future versions of BuddyPress this will be much, much easier. :)

    #51066
    gerikg
    Participant
    #51065
    Jeff Sayre
    Participant

    Once v1.1 comes out in the next couple of weeks, this issue should be moot. There will no longer be bhome and bpmember themes. Instead, BuddyPress will adopt the parent/child theme architecture that WP 2.7 makes possible.

    Backwards compatibility will remain for a while for those that want/need to use the old theming architecture. But it will eventually be phased out.

    Learn more about parent/child themes in WordPress.

    gerikg
    Participant

    Fresh start installations, I made three users two with unique avatars and one without.

    I change Mystery Man to Monster. Now all it shows are the Monster.

    WPMU 2.8.4a + BP 1.0.3 + BB 1.0.2

    I posted a topic in a forum from both sides BBpress & BuddyPress both give the same icons.

    Sidenote:

    On BBpress Forums I had to put this

    <?php echo bp_core_get_avatar( get_post_author_id() ); ?>

    but get_post_author_id() doesn’t work in WP/BP side.

    Jeff Sayre
    Participant

    bp_the_topic_poster_avatar() pulls the avatar of the people who post in a particular forum thread. It does not pull the overall group avatar.

    Do all your users have unique avatars?

    Are you on a dev site?

    Log into WPMU’s backend as Site Admin and navigate to “BuddyPress > General Settings > Default User Avatar” and see if you have selected the Mystery Man avatar. If so, change it to something else and save your settings.

    #51055
    Jeff Sayre
    Participant

    If you are saying that you do not want to have groups, activity streams, the wire, private messaging and a few other BP services, and just want to offer users the ability to create a profile and add/see friends, then the answer is simple. Just log into WPMu’s backend as Site Admin and navigate to the BuddyPress menu grouping. Select the “Component Setup” submenu option and disable the components you do not want to offer users.

    #51054
    Jeff Sayre
    Participant

    Are you using the new parent/child theme architecture or an older member theme located in /bp-themes/?

    #51052
    bpisimone
    Participant

    I would like to bring this topic I posted yesterday to this thread’s attention: https://buddypress.org/forums/topic/how-to-use-bphome-functions-on-bp-member-pages

    peterverkooijen
    Participant

    Thanks for the additional clues DJPaul!

    In the latest attempt I was going back to my first approach, trying to catch the input straight from the form, so that has to run on initial user registration, not on activation.

    Or is user_register not used in Buddypress at all? Is there a wpmu or bp equivalent I could try? Should I use wpmu_create_user? According to this blog post:

    the do_action for wpmu_new_user is directly at the bottom of wpmu_create_user in the wp-includes/wpmu-functions.php the wpmu_create_user gets sent the username password and email and checks if the username or email exists, if not create the new user in the database and assign a user_id to the return, also assigning capabilities and level … this happens on *all* levels of registration and is the perfect hook point to add them into the database

    the do_action do_action( ‘wpmu_new_user’, $user_id ); so you get the immediate user_id soon as it’s created which you can use in your table

    Apparantly this is like a flowchart of registration events in wpmu (wp-includes/wpmu-default-filters.php):

    add_filter ( 'wpmu_validate_user_signup', 'signup_nonce_check' );
    add_action ( 'init', 'maybe_add_existing_user_to_blog' );
    add_filter ( 'xmlrpc_methods', 'attach_wpmu_xmlrpc' );
    add_filter ( 'wp_authenticate_user', 'wordpressmu_authenticate_siteadmin', 10, 2 );
    add_action ( 'wpmu_new_user', 'newuser_notify_siteadmin' );
    add_action ( 'wpmu_activate_user', 'add_new_user_to_blog', 10, 3 );
    add_action ( 'sanitize_user', 'strtolower_usernames', 10, 3 );

    Should I focus on these wpmu action hooks instead of regular wp hook? Does bp have a list like this somewhere?

    I couldn’t figure out how to serialize that $meta data and extract the fullname from it, so I abandoned the approach hooking into wpmu_activate_user for now. Also when I put in the $user_id and $password arguments I got the error messages about missing arguments. wtf?!

    I think this bit of code grabs the input from the registration form:

    $fields = BP_XProfile_Field::get_signup_fields();

    if ( $fields ) {
    foreach ( $fields as $field ) {

    $value = $_POST['field_' . $field->id];

    fullname is the input from field_1, but I don’t know how to finish the php to get to $fullname = … . The two latest attempts above did not work.

    I have to give up for now. Deadline at my day job coming up…

    #51043
    Korhan Ekinci
    Participant

    Ok Kunal replace this part:

    <?php
    if ( function_exists('wp_logout_url') ) {
    $logout_link = '/ <a href="' . wp_logout_url( $bp->root_domain ) . '">' . __( 'Log Out', 'buddypress' ) . '</a>';
    } else {
    $logout_link = '/ <a href="' . $bp->root_domain . '/wp-login.php?action=logout&redirect_to=' . $bp->root_domain . '">' . __( 'Log Out', 'buddypress' ) . '</a>';
    }

    echo apply_filters( 'bp_logout_link', $logout_link );
    ?>

    With This:

    <a href="<?php echo wp_logout_url( get_permalink() ); ?>" title="Logout">Logout</a>

    And that should solve the logout issue.

    #51042
    Tore
    Participant

    Hi!

    Do you mean the adminbar (showing at the very top of the page, it says Buddypress to the left) or the navbar (containing only links to blogs, wire, profile, groups, etc and the subnavbar)?

    #51040
    Kunal17
    Participant

    I would love to see a TOS template that is customized to Buddypress communities that takes into account its technical feasibility like you described above.

    Buddypress makes it so easy for anyone to create a community but not everyone can afford to get professional legal help to create the TOS and privacy policy.

    Not sure if I can provide much input here as I am startup up my first community but I will follow this discussion closely.

    #51035
    Jamie Marsland
    Participant

    http://www.leckhamptononline.co.uk

    It’s a hyperlocal website serving approx 10,000 residents in a district of Cheltenham in the UK. Launching in Sept.

    #51034
    cpkid2
    Participant

    Thank you, DJPaul. I’m starting to get a clue lol. Just one question – Say I use “Kubrick” for my home/blog theme. How do I get a login/password field in the sidebar? I noticed it’s not one of the widgets. Do I have to grab the code from the admin bar on top and insert it manually into the sidebar?

    #51029
    gerikg
    Participant

    As of now they can have their own group that translate to their own topics/forum and they can be the admin of their “discussion” You can just have the groups only and no link to the bbpress section. The forums will be under groups. make sense?

Viewing 25 results - 63,076 through 63,100 (of 69,044 total)
Skip to toolbar