Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 3,126 through 3,150 (of 3,769 total)
  • Author
    Search Results
  • #76738
    hotforwords
    Participant

    Thanks for the post here, I just noticed this “bug” as well!

    r-a-y
    Keymaster

    I’m quite sure you can’t tack on just any component in the bp_is_active() function.

    It should be like this:
    if ( bp_is_active('profile') || bp_is_active('activity') || ... etc ) {

    The easiest thing would be to list what you want publically available.

    Here’s a function to build on:
    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-make-a-private-community/?topic_page=2&num=15#post-44616

    rich! @ etiviti
    Participant

    more of general feedback – i think the new site is great and all the hard work that goes into something like this (especially pulling in the plugins to groups)

    but i find myself a little distracted – i can’t put my finger on it (maybe since i’ve tweaked my own stuff to bring things more inline) but something with the disparity between sections (activity). i hate being vague though so I realize this is not helping ;)

    One weird bug – after sending a private message: my adminbar shows a new notification but obviously nothing is there as i sent one instead of receiving.

    #76487
    5887735
    Inactive

    Thanks for the link. I’m going to try that if my current changes don’t work. I changed the register slug and added more required fields to the signup page. I’ll let you know if it works.

    PS
    Looking at that code it seems it still let admins send PMs. If that’s true could it also be changed to allow other “ranks” such as authors, subscribers, etc.?

    #76485
    r-a-y
    Keymaster

    Try this until a more, full-featured privacy component is available.

    Remove send private message button for non-friends:
    http://blog.etiviti.com/2010/03/buddypress-hack-remove-send-private-message-for-non-friends/

    #76483
    xspringe
    Participant

    Got my second spam message as well. It seems to be affecting multiple BP installs so I think it should be a high priority to do something about it.

    #76476
    5887735
    Inactive

    I’m getting these on my own site. These are spam bots and they found a way into BP. This should be a number one priority for BP. I’ve seen this stuff with phpbb and other CMS. It very easy for these people to bring down your site.

    #76331
    Joel Rxxxxx
    Participant

    there is a plugin “BuddyPress Profile Privacy” which can make profils available only for friends

    i’m alsa searching a plugin to filter member, activity etc to logged users…. but i didn’t find so far ..

    #76329
    Kevin Ryman
    Participant

    Yeah I just got two spam private messages in the last two days. Here is the latest one:

    Please reply back with my email (anabel . awaza 01 @ yahoo . co . uk)
    Dearest,
    How are you over there?
    I know that you would be excited for the fact that you do not know who is writing.
    Actually my name is Mis. Anabel Awaza,Please my dear i will like us to hold a good long time relationship with real love.and I have something very important that I need to share with you. I am very serious; I shall tell you more about myself and send you my picture in my next mail.please reply back with my email address (anabel . awaza 01 @ yahoo . co . uk))
    Hoping to hear from you soonest.
    Yours Anabel.

    View Spammer’s BuddyPress profile:
    https://buddypress.org/community/members/anabel4you/

    #76322

    In reply to: group types

    Anonymous User 96400
    Inactive

    I’d keep group types separate from your normal types (public, private, hidden). You’d still want a group of a certain type to be able to be either public, private or hidden…

    #76316
    5887735
    Inactive

    Message spam is getting out of hand.

    #76274

    In reply to: group types

    firetag
    Participant

    yeah but whenever users create new groups I’ll have to add in a new group type like ( public, private, hidden, customgroup1 or whatever ). But I guess the reason for using group meta would be because it’s easier to cache?

    #76092
    Tosh
    Participant

    I just got points, donate link and rank (if enabled) displaying on the BuddyPress Profile :) You’ll have to edit 1 file though. Here is the updated code.

    So how it displays on mine is:

    User @ user
    1635 points [Donate Points] Expert

    active 6 hours, 32 minutes ago
    Cancel Friendship
    Mention this User
    Send Private Message

    How would I incorporate this into my plugin though? I got this to show up on the profile. But it’s not where I want it, how would I control it without just editing the file directly.

    ajaxmac
    Participant

    I have found a solution to my problem – but don’t know exactly why these issues arose. I shall elaborate in case anyone else has similar problems:

    I have also been experiencing problems with the themes for blogs being all messed up. Regardless of how they were activated – either globally or on a blog-by-blog basis, they never displayed properly. Possible an obscure redirect issue. At the same time I was experiencing the messaging issues for which I started this thread.

    I think that these problems cropped up sometime between:
    – upgrading from WP MU 2.9.1 > 2.9.2
    – upgrading Buddypress 1.2.x > 1.2.3
    which were both done manually AND
    – trying out a whole buch of plugins that had not been tested (or verified) to work with my versions of BP and WPMU.

    So I rolled the whole site back – files and mysql to about a month ago – before I upgraded and fucked up my database. Then copied any posts, files, members, activities etc from one database to the other…

    So the lessons I learned from the sorry mess is:
    – Backup regularly (this goes without saying)
    – don’t try out spurious plugins that may damage your install (and lead to days of head-beating-on-wall WTF? moments)

    Also – running the whole site on Amazon Web Services which gives you cheap access to ubiquitous storage (S3) at insanely low cost. So I run a script that backs up all files and mysql from the site daily and hang the GB that will accrue – because each GB cost something like $0.01 – or something….And this just saved my sanity.

    Regards

    Ajax

    #75891
    Tosh
    Participant

    @vee_bee I’m using the BuddyPress Template Pack Plugin with my Single Install WP. So I updated my:
    wp-content/themes/fusion/members/single/member-header.php file with this and it works great. Shows the points for the member your viewing at the moment. Tried to get the donate link to work as well. But no success just yet.

    These forums don’t allow you to embed code like the wordpress.org forums I guess. In the echo’s I’m just surrounding it with a bold tag

    <?php
    // Cubepoints for current user
    echo ““;
    if(function_exists(‘cp_displayPoints’)){
    global $bp;
    cp_displayPoints($bp->displayed_user->id);
    }
    echo “

    “;
    // END Cubepoints
    ?>

    So how it displays on mine is:

    User @user
    1635 points

    active 6 hours, 32 minutes ago
    Cancel Friendship
    Mention this User
    Send Private Message

    #75774

    In reply to: Hide Admin

    Brajesh Singh
    Participant

    hi @r-a-y is_site_admin() and is_admin() are very different. is_admin() checks whether you are inside wordpress admin or not.
    @scotm
    How about making the activity of admin user private
    `add_filter(“bp_activity_hide_sitewide_before_save”,”make_admin_activity_private”,10,2);
    function make_admin_activity_private($hide_sitewide,$activity){
    //get the current activity
    if(current_user_can(‘manage_options’))//user is admin
    return 1;
    else
    return $hide_sitewide;

    }
    `
    Hopefully the code goes through this forum.

    #75685

    In reply to: Tiny Mce

    Boone Gorges
    Keymaster

    Is this happening with all kinds of input? Forum posts, private messages, activity items? Also, what version of bp-tinymce are you using?

    techguy
    Participant

    I haven’t been able to test this completely, but it seems like the automatic group adding isn’t working if the group isn’t set to a public group. If it’s set to private then it seems like it tries to make the request maybe, but isn’t finishing the process of adding the person to the group. I’ll look into this more as I have time unless you get a chance to look first.

    All over it. :)

    Hugo Ashmore
    Participant

    Wow 😮 thanks 3sixty for moving it up, maybe I was being too respectful should have changed it myself :)

    And thanks JJJ for the quick patch to #2343 Can you also look at #2293 if you’re not already.

    #75343
    3sixty
    Participant

    “Post something to xxx”
    This actually should be described more clearly. It is ambiguous whether you are posting something to them privately or publicly (until you try it out).

    3sixty
    Participant

    woop! updates:

    1. I changed the milestone for your bug report to 1.2.3 and added a link back to this thread so the rationale can be seen
    2. JJJ has patched the ‘promiscuous’ bug already!!!! I have not had a free moment to test yet: https://trac.buddypress.org/attachment/ticket/2343/forum_id_check.patch

    Hugo Ashmore
    Participant

    Well cared for? yes guess it was but I’m still concerned that it generated no other interest or was that simply that the milestone was set to far in the future?

    No hidden groups shouldn’t be used period until such time as this issue is correctly dealt with, hacks worry me used to cure this sort of problem. however given that Boone looked into this I’m pretty happy the fix is a fairly safe short term fix.

    As you spotted I questioned whether or not the milestone should have been moved up? to 1.2.4 but it was a question unanswered, I placed it in 1.3 as I wasn’t sure where it ought to have been placed but asked the question upon creation and notification in original forum thread.

    3sixty
    Participant

    OK, that trac ticket looks well cared-for. However, I agree that one should be a 1.2.4 milestone item rather than 1.3… hidden and private groups really should not be used without that fix. Will it moved up to 1.2.4?

    Hugo Ashmore
    Participant
Viewing 25 results - 3,126 through 3,150 (of 3,769 total)
Skip to toolbar