Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 28,551 through 28,575 (of 69,108 total)
  • Author
    Search Results
  • #139218
    9087877
    Inactive

    @arrogance-is-bliss Thanks for the info. Its a shame how some people use their knowledge destructively vs constructively. I will never jeopardize the integrity of the platform just to have a malicious plugin or theme released.

    #139213
    Arrogance is Bliss
    Participant

    There are a few different social networking platforms out there and someone coming up with a safe way to integrate one or more of them with WordPress (or visa-verse) would be a welcomed development, in my opinion. However, a ‘plugin’ like GRA4 that takes unsuspecting members from WordPress sites and opens the WordPress site owner(s) up to potentially (MAJOR) security and privacy issues (as well as hosting and server violation issues) is not a plugin. It is a dangerous interface that WordPress webmasters would be well advised to stay away from.

    One thing to consider when allowing a ‘plugin’ to use a remote server is, you can not know the intentions of the people on the remote server. Once that avenue is opened, a site can be vulnerable to many things unseen and unimagined.. That is Dangerous.. Unfortunately, a lot of people using WordPress do not look at code. Even if they did, they don’t know how to spot potential dangers. As website developers, webmasters, and the like, we do have a responsibility to those who use our websites, to be careful of providing something that could violate the rights and privacy of our users as well as open our own servers and/or hosting, to unsavory and malicious intruders.

    It pays to ask questions, @lunchgirl thanks for doing so. I wasn’t aware of gra4 until I saw this thread and @mercime pointing out that it isn’t available in the Repository anymore caused me to want to know what it did. So, I looked it up and found that they are attempting to infiltrate several different and independent platforms. If anyone uses those other platforms or knows someone who does, I would let them know about that plugin (or in the case of some, it’s a drop-in). It is still available in those other platforms and shouldn’t be. Please spread the word..

    Hugo Ashmore
    Participant

    @shawn38

    Shawn Roger provides a great deal of help and support of the forum, and has provided you with some valuable pointers and guidance here which should have helped you. Throwing that help back in someone’s face and insulting them is not very wise, nor is it ever acceptable behaviour on open forums.

    Many of us that can provide the help people require are ‘Professionals’ in the strict meaning of the word we earn our living from web development, I, nor any of the others I suspect, take kindly to phrases like and the ones that use it to gain money should be banned! it’s not a very clever thing to say!

    This thread has become unproductive and I’m closing it.

    Please avoid insulting members on this forum in future.

    9087877
    Inactive

    @rogercoathup If your not going to provide real world examples then just stop posting here. Most people on this forum are not php programmers and the ones that use it to gain money should be banned! If your not going to provide real world examples then just stop posting here. Most people on this forum are not php programmers and the ones that use it to gain money should be banned! @mercime This is just my opinion but I am tired of people telling you what to do but not enabling or giving you the knowledge of how to do it. Telling someone to hire a developer is not an option because most people including myself are poor, so @rogercoathup If your not going to provide real world examples then just stop posting here. Most people on this forum are not php programmers and the ones that use it to gain money should be banned! Post your bull on the job board if you wanna make money. If you really wanna help open source then quit beating around the bush and give real help when its needed!

    #139210
    Paul Wong-Gibbs
    Keymaster

    I don’t understand what you mean by folder name. The BuddyPress folder on the file system is not used in that way. We have components at example.com/members/, and example.com/groups/, etc.

    9087877
    Inactive

    Being that this is the most major flaw of buddypress I have to BUMP! Sorry folks!

    9087877
    Inactive

    @mercime Thank you! Its great to have a wonderful community that helps when you just “over look something!” Thank you my friend! :-)

    #139202

    In reply to: Font Color

    @mercime
    Participant

    @webifiedgeek depends on the theme. usually you change the color of the font in the theme’s style.css file

    #139200
    9087877
    Inactive

    This is a shitty concept and is a poor example of plugin usage!

    @davidkooo, Exactly what i did, you can use “ to show notification when you have notification.

    Roger Coathup
    Participant

    @davidkooo – BuddyPress adds the notification bar using the function bp_members_admin_bar_notifications_menu() (in buddypress/bp-members/bp-members-adminbar.php).

    If you take a look at that function, you can see how it generates the menu, and rework to include it in your template file.

    In particular – take a look at the function it uses: bp_core_get_notifications_for_user()

    #139196
    @mercime
    Participant

    @arrogance-is-bliss thank you for providing a detailed report on the extent of the plugin’s abuse. I just saw the first few lines of one of the plugin’s files in repo and reported it right away at plugins@wordpress.org

    9087877
    Inactive

    You may want to contact @modemlooper and request that he add this functionality to his awesome “Profile Menu Plugin” on its next iteration. I would love to finally have freedom of buddypress independent of this bar that sends a red flag that it’s using buddypress. The only way to do this is to get rid of this bar and implement it in the normal menu. @modemlooper I would like to request a way to add an order to your plugin, just as as you can order a custom menu. It would also be cool to have admin options to rename this extra tab to name it something other than “Profile!” Thanks!

    #139190
    djduckworth
    Member

    Just tried it out and it works perfectly :)

    Buddypress 1.6 and WordPress 3.4.1.

    However it doesn’t use the excerpt, it uses the first X of the post. It actually pulls quite a lot which is not so good for SEO since it will produce a lot of duplicate content.

    I’ll see if I can find where it defines how much to pull in from the post.

    #139188
    djduckworth
    Member

    It’s a regular install of WordPress. Just want to be able to customise the buddypress folder name.

    I finally made up a solution adding some meta fields (blog_id, blog_path, blog_name) to groups on creation:

    `function bp_group_meta_save ( $group_id ) {
    $blog = get_blog_details( get_current_blog_id(), true );

    $fields = array(
    ‘blog_id’ => $blog->blog_id,
    ‘blog_path’ => $blog->path,
    ‘blog_name’ => $blog->blogname
    );

    foreach ( $fields as $field => $value ) {
    groups_update_groupmeta( $group_id, $field, $value );
    }
    }
    add_action( ‘groups_created_group’, ‘bp_group_meta_save’ )`

    When showing the list of groups for the current blog, I build a list with the groups with the blog_id value that matches the blog:

    `function get_groups_by_meta ( $field, $meta_key, $meta_value ) {
    global $wpdb;

    if ( is_string( $meta_value) ) $meta_value = “‘” . $meta_value . “‘”;

    $sql = $wpdb->prepare( “SELECT $field from {$wpdb->base_prefix}bp_groups_groupmeta WHERE meta_key=’$meta_key’ AND meta_value=$meta_value”, OBJECT );
    $res = $wpdb->get_results( $sql );

    return $res;
    }

    function get_groups_by_blogid ( $blog_id = 1 ) {
    $list = get_groups_by_meta( ‘group_id’, ‘blog_id’, $blog_id );

    if ( count( $list ) ) {
    $res = ”;
    foreach ( $list as $item ) {
    $res .= $item->group_id . ‘,’;
    }
    return substr( $res, 0, -1);
    } else {
    return FALSE;
    }
    }`

    And finally, in the groups-loop.php template:

    `$current_blogid = get_current_blog_id();
    if ( $current_blogid > 1) {
    $groups_set = get_groups_by_blogid( $current_blogid );
    ( $groups_set !== FALSE ) ? $extra_args = ‘&include=’ . $groups_set : $extra_args = ‘&include=-1’;
    }

    if ( bp_has_groups( bp_ajax_querystring( ‘groups’ ) . $extra_args ) ) : ?>`

    In my wp-config.php, I have defined BP_ENABLE_MULTIBLOG as true, and also a common place to upload user avatars:

    `//Buddypress multi-sitio
    define( ‘BP_ENABLE_MULTIBLOG’, true );

    //Avatares de usuario comunes a toda la red multisitio
    define( ‘BP_AVATAR_URL’, “http://mainblog/wp-content/uploads” );
    define( ‘BP_AVATAR_UPLOAD_PATH’, ‘F:/xampp/www/mainblog/wp-content/uploads’ );`

    I don’t know if this is a overly complicated solution. I suspect Buddypess 1.6 can deal with this situation (segregated groups, activity, forums but common user base) in a far more simple way, but I have no idea how.

    Any clues?

    smartmwp
    Participant

    @mercime Thanks so much for replying. I am using a theme Supermassive by themeforest and this theme is BP compatible. Was working fine with BP1.5.7. Plugins Installed (all at their latest versions)

    bbpress,
    jw player,
    members (for tweaking user roles),
    akismet,
    BP Group Email Subscription,
    Subscribe2,
    Buddypress Group forum extras(deactivating this didn’t work),
    enhanced Buddypress widgets,
    WP Super Cache
    YARRP

    Site Wide Forum settings – I have checked “Allow BuddyPress Groups to have their own forums”
    and Group Forums Parent as “Forum Root”. The pages assigned under Buddypress – Settings have not changed, nor I made any changes to the Site Wide Forum Settings after upgrading to version 1.6. There are only 2 options for me at Buddypress->Settings-> Forums
    1. Uninstall Group Forums
    2. Configure Site Wide Forums

    Thanks and would really appreciate all advise.

    #139185
    @mercime
    Participant

    ==. I’ve read through the previous topics in regards to this, but haven’t seen my particular issue brought up. … I’ve tried switching to BP Default theme, and disabling all plugins except Buddypress. ==

    @sarah_lena Which kind of images are not sized properly – user’s gravatar, or uploaded avatar or the mystery man default avatar?

    #139184
    @mercime
    Participant

    @timmvaughn what theme are you using? site url?

    #139183
    Roger Coathup
    Participant

    Their site is based on Elgg

    Just to update, I have now solved this problem.

    I removed the code that shares the users and roles with the buddypress sub-site, so the wp-config.php and capabilities.php are back to the wordpress originals. Then I logged in with the admin account (the only user that was created when the wordpress was installed) and i managed to run the update wizard.

    Then I changed the wp-config.php and capabilities.php files back to include the code used to share the users from my main wordpress site.

    All is back to normal ;)

    theBestProgrammers
    Participant

    I have a single buddypress blog under sub directory, I have activated 1.6 version in WP 3.4.1 but I can’t see any forum groups, etc option for users at front end. Also in admin area under BuddyPress >> Settings gives error message “You do not have sufficient permissions to access this page.”
    Not even BuddyPress tab appearing at left menu.

    #139175
    ToxikRick
    Member

    Ok, I did a lot of reading here. I decided to try something much simpler… and it worked for me.

    I… uninstalled my forums from the WPadmin area
    Made a copy of my bb-config.php on my desktop (just in case I needed to put it back
    deleted the existing bb-config.php using file zilla FTP program
    re-installed forum WPadmin area(with my forum page I created already selected)

    It told me a new bb-config.php file was created. Tested out a post and it worked! I really hope this helps others!

    charlietech
    Participant

    Try dudamobile plugin or wptouch, you have to pay for wptouch but its suppose to support buddypress.

    #139172
    ktsoe
    Participant

    Before this, I’ve some limited knowledge about web hosting. I used try and error method. I think I did live testing to use BuddyPress 2 or 3 times within one month. The best assistants are online support itself. Some local bloggers also help me.

Viewing 25 results - 28,551 through 28,575 (of 69,108 total)
Skip to toolbar