Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 62,201 through 62,225 (of 69,054 total)
  • Author
    Search Results
  • #53390
    Paul Wong-Gibbs
    Keymaster
    #53388
    Paul Wong-Gibbs
    Keymaster

    Can you upload a screenshot and a ticket to https://trac.buddypress.org/? I don’t run a Windows PC so I can’t use IE.

    #53387
    Paul Wong-Gibbs
    Keymaster

    There was a bug with WPMU reporting this message, but it still activated the plugin correctly.

    If that’s not the case for you, we need more information: https://buddypress.org/forums/topic/when-asking-for-support

    #53386

    In reply to: BuddyPress v 1.1

    Paul Wong-Gibbs
    Keymaster

    Without seeing your error logs, it is impossible to help.

    Be sure you are following these upgrade instructions *exactly*.

    #53382

    In reply to: BuddyPress v 1.1

    Don Elliott
    Participant

    I downgraded back to 1.01 – and it’s running again. I REALLY need the functionality of 1.1 – any idea why this is happening or if this is a glitch with buddypress that might be fixed soon??

    -Don

    http://donelliott.us

    #53381

    In reply to: BuddyPress v 1.1

    Don Elliott
    Participant

    I did the automatic upgrade from 1.03 and now my client’s site won’t load anything…just a white screen… http://oppositesdo.com/

    What is going on? I can’t figure it out….

    #53379

    In reply to: BuddyPress v 1.1

    alexduvot
    Participant

    I removed all the plugs and still got the error

    how do you fix it

    i have to use the old version because nothing i do make this updated version works

    #53378
    Christi Richards
    Participant

    …and it rocks! Thank you!

    #53377

    In reply to: BuddyPress v 1.1

    Christi Richards
    Participant

    I received that error when upgrading due a plugin conflict, however, even though I received the error, it still activated BP under the new version.

    #53373
    Andy Peatling
    Keymaster

    So – in 1.1 BuddyPress does not query the database to fetch avatars, it expects them to be in specific folders and with specific names.

    Likely what it happening is the permissions on the folders denied BuddyPress the access it needed to move avatars around and into the format/location needed for 1.1. Most of the problems will be related to group avatars mixing up with user avatars, as they were in the same folder for 1.0.

    The quickest option is to remove the /wp-content/blogs.dir/1/files/avatars/ directory and let BuddyPress rebuild your avatars as people upload again. Anyone who has a Gravatar will revert back to that image, so not all will be lost.

    Other than that, you can use this code below to place group avatars in the correct place, so they don’t conflict with user avatars (this normally runs on upgrade). Make sure the permissions on the avatar folder allow for BuddyPress to move files around.

    function move_group_avatars() {
    /* On upgrade, handle moving of old group avatars */
    $groups = groups_get_all();

    foreach ( $groups as $group ) {
    /* Don't fetch and move gravs, default images or empties */
    if ( empty($group->avatar_thumb) || strpos( $group->avatar_thumb, 'gravatar.com' ) || strpos( $group->avatar_thumb, 'identicon' ) || strpos( $group->avatar_thumb, 'none-thumbnail' ) )
    continue;

    $start = strpos( $group->avatar_thumb, 'blogs.dir' );

    if ( false !== $start ) {
    $avatar_thumb = WP_CONTENT_DIR . '/' . substr( $group->avatar_thumb, $start, strlen( $group->avatar_thumb ) );
    $avatar_full = WP_CONTENT_DIR . '/' . substr( $group->avatar_full, $start, strlen( $group->avatar_full ) );

    if ( !file_exists( $avatar_thumb ) || !file_exists( $avatar_full ) )
    continue;

    $upload_dir = groups_avatar_upload_dir( $group->id );

    copy( $avatar_thumb, $upload_dir['path'] . '/' . basename($avatar_thumb) );
    copy( $avatar_full, $upload_dir['path'] . '/' . basename($avatar_full) );

    unlink( $avatar_thumb );
    unlink( $avatar_full );
    }
    }
    }
    add_action( 'plugins_loaded', 'move_group_avatars' );

    Put that somewhere so it can run, maybe temporarily paste it at the top of bp-core.php, then remove it when you are done.

    #53366
    onethousandseas
    Participant

    You will need to upgrade your themes also… Are you using the bp-sn-parent and bp-default themes?

    I think so. They show up in my in WPMU –> BuddyPress –> General Settings as

    BuddyPress Default (1.1-rc)

    BuddyPress Social Network Parent Theme (1.1-rc)

    BuddyPress Default Member Theme (1.1-rc)

    I’m currently using the parent theme.

    Also when I try to install bbPress by going to http://domain.com/wp-content/plugins/buddypress/bp-forums/bbpress/ as indicated in http://domain.com/wp-content/plugins/buddypress/bp-forums/installation-readme.txt nothing shows up. Is this part of the problem?

    #53357
    Arx Poetica
    Participant

    I think the comparison, in that case, would be wordpress vs. drupal, and then drupal social vs. buddypress…

    #53365

    I could be wrong, but this is technically your second major plugin. ;)

    #53356
    David Lewis
    Participant

    Any tips on getting bp-events 1.1 working with BuddyPress 1.1? Or is it simply not finished?

    I installed it fine but it’s somewhat broken. For instance, nothing shows up on the event detail pages. The content area is just blank. Anyway, if it’s still in development… that’s fine. I’m just trying to figure out the status… is it’s just not done or it I didn’t install it properly.

    #53352

    In reply to: Several issues

    knight_
    Participant

    #3 is resolved. Jeff nailed it!

    #1-2

    Since I have customized BP quite a lot (no admin bar, so all the links are in the individual pages etc.) I’m quite scared of upgrading to 1.1. Will an upgrade to 1.1 only overwrite my changes to the “core” files in plugins/buddypress? It wont affect anything in bp-themes/mytheme correct? Can I backup plugins/buddypress and then restore it if 1.1 completely messes up my installation?

    #4 Can you give me pointers? Couldn’t find any past posts dealing with this issue. Any global configs? This feature is going to keep away a lot of users from actively participating unless I find a way to disable it.

    Thanks again for all the answers. Much appreciated.

    #53351
    abcde666
    Participant

    @philbow

    I totally agree, this feature should be made more visible and being availabe at nearly all pages….

    #53348
    philbow
    Participant

    First, great job to everyone involved! I do have a question/observation.

    Playing around with the testbp site, I notice that the status form is not visable. You need to click the current status to create a new “status post”. I’m wondering why it’s not always shown, like on all the other sites that use this feature?

    I love this feature, but fear it won’t get used because users won’t realize that it is there (or how to get to it).

    #53346
    Andy Peatling
    Keymaster

    Not in the RC, use the final.

    #53345
    Myjive
    Participant

    I just downloaded and upgraded to 1.1RC, yet I still don’t see some of the functions, specifically “bp_is_profile_component”

    #53344
    Mike Pratt
    Participant

    @bobblegom I am BP all the way but shouldn’t you compare Google Trends on “drupal” vs “buddypress” not “drupal social” ?

    @candydate I just see the release of 2.7, 2.8 all the way to 2.8.4, all of @donncha’s hard work and the aforementioned community buzz and conclude that the wp community is not moving slowly.

    I run a BP community of USMA alumni and not only is it stable but they generally love it. I am more of a hack than true coder and I have had no issues. It is def a serious professional grade tool. The ease of customization alone (I have many friends who run Drupal sites and it’s always fun to hear them defend the arcane way Drupal does things.

    WP and BP have a lot of growth ahead and they are by no means perfect but the openness and willingness to change and grow is evident (just see any IRC chat with all the developers)

    Happy to answer more specific questions on resource requirements and what you were not able to learn from your dummy site.

    #53343
    Jeff Sayre
    Participant

    Here’s Andy’s announcement post about the just-released BuddyPress version 1.1. I think it speaks volumes about the current state and future health of the WPMU + BP community.

    #53342
    Jason Giedymin
    Participant

    There is some hate in that linky, wow!

    #53337

    Which BP version are you using?

    This is fixed in BuddyPress1.1.

    I’m closing this topic since there is another one announcing the official release. Please route your responses here going forward.

    #53334

    If you are using 1.1rc or 1.1 trunk, then that should happen automatically for you once you turn on and configure the group forums.

    If not, and if you’re using an unmodified version of BuddyPress 1.0, upgrading to 1.1 would be the easiest way.

Viewing 25 results - 62,201 through 62,225 (of 69,054 total)
Skip to toolbar