Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 58,851 through 58,875 (of 69,016 total)
  • Author
    Search Results
  • #61913
    D Cartwright
    Participant

    Looks like a cleaner way to do it than the old cold I saw DJPaul post a few months back. Is the below incorrect in some way? I’ll probably move over to this way of doing things but we’re literally just about to launch a site with bp-groupwiki and the latest buddypress/wpmu (seems fine in terms of usability):

    /* Check that BuddyPress is loaded before Wiki, from DJPaul */

    function wiki_load_buddypress() {

    if ( function_exists( ‘bp_core_setup_globals’ ) ) {

    require_once (‘bp-groupwiki-main.php’);

    return true;

    }

    /* Get the list of active sitewide plugins */

    $active_sitewide_plugins = maybe_unserialize( get_site_option( ‘active_sitewide_plugins’ ) );

    if ( !isset( $active_sidewide_plugins[‘buddypress/bp-loader.php’] ) )

    return false;

    if ( isset( $active_sidewide_plugins[‘buddypress/bp-loader.php’] ) && !function_exists( ‘bp_core_setup_globals’ ) ) {

    require_once( WP_PLUGIN_DIR . ‘/buddypress/bp-loader.php’ );

    require_once (‘bp-groupwiki-main.php’);

    return true;

    }

    return false;

    }

    add_action( ‘plugins_loaded’, ‘wiki_load_buddypress’, 1 );

    #61912
    peterverkooijen
    Participant

    Andy Peatling posted this code on another thread:

    /*** Make sure BuddyPress is loaded ********************************/
    if ( !function_exists( 'bp_core_install' ) ) {
    require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
    if ( is_plugin_active( 'buddypress/bp-loader.php' ) )
    require_once ( WP_PLUGIN_DIR . '/buddypress/bp-loader.php' );
    else {
    deactivate_plugins( __FILE__, true );
    return;
    }
    }
    /*******************************************************************/

    You have to put it at the top of plugins to make sure that BuddyPress is loaded before the plugin. Does this accomplish the same thing as dpolant’s and M’s code? Are there arguments to use one instead of the other?

    Haven’t had time to try it yet…

    #61908
    zageek
    Participant

    Hi thanks. I will check it out. The reason I asked why nobody was helping was that I posted threads about this in the past month and they never got responded to so I have been patient.

    #61905
    David Carson
    Participant

    Delete the default theme from your themes directory and then rename the folder with your theme to ‘default’.

    If you want to make your sub-blogs look exactly like your primary blog *and* you are using BuddyPress 1.2 Beta, then you’ll want to check out the how-to called “Building a BuddyPress Child Theme.

    #61902
    flyingfrog
    Participant

    i don’t know if it can save you some work, i’ve tested some more:

    * adding only one of First/Last name works

    * In every case, if from wordpress administration “Edit user” i change the “display name publicly as” to the nick or last name of the user that doesn’t change inside buddypress

    I don’t know if this is a desired behaviour or not, so just hoping to be useful

    keep on your great work!

    #61899
    Mike Pratt
    Participant

    I’d contact the develper https://buddypress.org/developers/mariusooms/

    fyi – the trunk for BP Group Blogs has not had a commit since 12/17 so take that into consideration

    #61893
    Andrea Rennick
    Participant

    “Fatal error with no indication of what the error is.”

    Errors are usually suppressed on the front end. did you check your server’s error logs?

    “Here is my post on another thread regarding the same issue: https://buddypress.org/forums/topic/cannot-activate-bp-12-fatal-error-cannot-redeclare-bp_loader_activate”

    The phrase in there with the big clue is “cannot redeclare” Which means it is being called twice.

    Which means likely – stab in the dark guess here – you have two copies of the plugin.

    “How come nobody can give me any insite into whats going on”

    because you have two posts within 7 hours during a timeframe where a large portion of the volunteers here are sleeping. :) They do that sometimes.

    #61891
    still giving
    Participant

    BuddyPress Group Blog is still broken for me …

    Could you or someone else explain a bit more clearly how to fix it?

    Thank you.

    I mean where am I suppose to do this edit?

    #61890
    zageek
    Participant

    Now I tried reinstalling buddypress and I am still getting the problem. Fatal error with no indication of what the error is. Its messing up my site. Could it be a WPMU problem.

    Here is my post on another thread regarding the same issue: https://buddypress.org/forums/topic/cannot-activate-bp-12-fatal-error-cannot-redeclare-bp_loader_activate

    How come nobody can give me any insite into whats going on. I’m seriously getting stuck and wanting to abandon buddypress for some other system. :(

    #61884
    Nommo
    Participant

    @ Chouf1 – no worries – thanks for the reply :)

    Where is the IP (can’t be my mailhost as I didn’t enter any email details) banned? I am at work and will need to action something I am sure to get us out of the blacklist wherever it is… I will have to try your demo from home tonight in the meantime :)

    Cheers

    #61883
    danbpfr
    Participant

    @ nommo, Sorry, this is because you’re using a banned IP or mail host.

    Try to use something other. (you@gmail ie)

    #61882
    Michael Berra
    Participant

    @dave It is just fine, your chat. BUT for my use, too much on the user-side. Too many options, possibilities etc… This is confusing for most of my users… (just the small-pop-up-chat is fine :-)

    #61880
    Nommo
    Participant

    @Chouf1 Hmmm… I try to view the demo but get “(My IP address) est banni ! Va voir ailleurs…”

    @Dfa327 I have tried to install your BP Ajax Chat but couldn’t get it to work – when I hit the chat button I get “You’re currently logged out.”

    @M – am I being partially sighted or is your chat plug-in demo not on your site?

    I am currently rolling out an internal corp social network site based on MU&BP and chat would be a total boon. I don’t want to have to resort to Saleforce Chatter ;-)

    #61876
    guristu
    Participant

    I have adjusted the wp-hashcash plugin to work with buddypress signup. Here is what I did: I got the wp-hashcash plugin and I added the following code to the file:

    Code:
    function wphc_check_signup_for_bp(){

    global $bp;

    // get our options
    $options = wphc_option();
    $spam = false;
    //if( !strpos( $_SERVER[ ‘PHP_SELF’ ], ‘wp-signup.php’ ) )
    //return $result;

    // Check the wphc values against the last five keys
    $spam = !in_array($_POST[“wphc_value”], $options[‘key’]);

    if($spam){
    $options[‘signups-spam’] = ((int) $options[‘signups-spam’]) + 1;
    wphc_option($options);
    $bp->signup->errors[‘spam’] = __(‘You did not pass a spam check. Please enable JavaScript in your browser.’);
    } else {
    $options[‘signups-ham’] = ((int) $options[‘signups-ham’]) + 1;
    wphc_option($options);
    }

    }
    add_action( ‘bp_signup_validate’, ‘wphc_check_signup_for_bp’);

    function wphc_error_hook_register_page(){

    do_action(‘bp_spam_errors’);

    }
    add_action(‘bp_before_register_page’, ‘wphc_error_hook_register_page’);

    Then, under the line (line number about 507)

    Code:
    add_action( ‘signup_hidden_fields’, ‘wphc_add_signupform’ );

    I put this line:

    Code:
    add_action(‘bp_after_registration_submit_buttons’, ‘wphc_add_signupform’);

    Then I activate the plugin. It should keep spam bots from being able to create accounts, but humans spammers can still do it. Anyway, if you can’t get it to work, let me know via PM and I will try to send you the file.

    Later

    #61874
    zageek
    Participant

    I am having major problems with spam as well. Ironically it started as soon as I put my link in the showcase thread on this forum. I think the spam bots are looking there for easy targets as well.

    Why do people make spambots that don’t even advertise stuff and just waste everyone’s time filling sites with meaningless crap. Is it like they are trying to sabotage Buddypress?

    How does one submit domains and sites and IP addresses to spam traps.

    #61873
    zageek
    Participant

    Here is the original thread I posted when it happened.I couldn’t find it through search??!! I had to go through old posts to find it. Can anyone shed some light on this?

    #61870
    Alvaro Illanes
    Participant

    I’m having trouble activating BuddyPress Geo Plugins … submenus not displaying on the site.

    #61869

    In reply to: BuddyPress Geo plugin

    Alvaro Illanes
    Participant

    … I’m having trouble activating this plugins … submenus not displaying on the site.

    Bp’m using wpmu 1.1.3 and 2.9.1.1, with themes of buddymathic.

    ??

    regards

    Alvaro

    #61868
    zvhipp
    Participant

    Seems Gigya does work with BP 1.2 on WordPress. Only thing it would require is to modify avatar section so it can display yahoo avatar if linked just as facebook connect does. And display log in button with default buddypress login box.

    #61867
    kwsherwood
    Participant

    Logical question. I suppose that would suggest whether its a BP or WPMU level problem.

    I’m running this “production” right now, using it with three classes of students. Do you have some confidence that I can safely disable buddy press in order to check? I’d like the trackbacks to work, but I don’t want to create a second headache if I can’t reenable buddypress.

    featherodd
    Participant

    @haloid if you want to jump the gun, wrap the elements that are calling “bp_get_total_friend_count” with the following:

    <?php if ( function_exists( 'friends_install' ) ) : ?>

    {{ li item here }}

    <?php endif; ?>

    As far as I know, the calls are made in the following places (inside the new default):

    /plugins/buddypress/bp-themes/bp-default/activity/index.php

    /plugins/buddypress/bp-themes/bp-default/members/index.php

    I’m with your brother. Friending is wack for niche networks. Fingers crossed that this is abolished in place more advanced grouping https://buddypress.org/forums/topic/friends-and-groups-for-buddypress-13

    UPDATE: I forgot about /group/create.php, which relies heavily on a users “friends” for the invite stage. Lame!!

    #61861
    @mercime
    Participant

    @Brajesh – Thank you as always for clarifying the issue :-)

    #61856
    David Lewis
    Participant

    I’m a colossal idiot. LOL. I hadn’t reactivated BuddyPress after updating. Hahahaha. Sorry. Don’t mind me.

    #61855
    David Lewis
    Participant

    p.s. The themes don’t even show up in “Site Admin > Themes”. Only the three themes that come with WPMU show up.

    #61854
    David Lewis
    Participant

    Okay… when I try this new way of leaving the themes in the plugin folder… my child themes now give me an error saying “The following themes are installed but incomplete. Themes must have a stylesheet and a template.” and “Template is missing”.

    Do you have to reference “Template: bp-default” differently from a child theme? With a full path perhaps? How does WordPress “know” about those themes inside the BuddyPress folder? I’m at a loss I’m afraid. And I’ve followed the instructions on the “building-a-buddypress-child-theme page” to the letter.

Viewing 25 results - 58,851 through 58,875 (of 69,016 total)
Skip to toolbar