Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 3,701 through 3,725 (of 3,870 total)
  • Author
    Search Results
  • #49025
    Greg
    Participant

    I just realized that JJJ’s question a few posts up is directed at me.

    @JJJ, No, I haven’t changed these settings in wp-config.php.

    Does messaging use cookies? And if so, would it have this result? Just to reiterate, it is not only that mail doesn’t get sent to the second recipient. No message gets sent at all to the second recipient (they don’t even appear as a recipient in sent items).

    And I have repro’d the issue on tesbp.org.

    #48959
    peterverkooijen
    Participant

    Yes, I’d like more group functionality and this is obviously a big one! These plugins could be starting points:

    Private Files

    File Uploader 1.0 Beta

    Custom Upload Dir

    Haven’t looked into any of these in detail…

    #48901
    Greg
    Participant

    Bumping this to see whether I am the only one who can see this fairly basic bug. I have repro’d on a site with no customization and standard themes, and on testbp.org.

    #48709
    Greg
    Participant

    I went over to testbp.org and this issue repros there too. When sending a message to two people where the first one is added to the “to” line using the “send message” button and the second person is added manually, the message only goes to the first.

    @JJJ, did you follow exactly the repro steps that I provided?

    @Burt, thanks – I used the auto-upgrade and had forgotten the about the theme directory gymnastics that one needs to do at the end of an install.

    #48667
    Burt Adsit
    Participant

    Always upgrade themes when upgrading bp they are part and package. The themes are the front end to new and fixed features.

    #48666
    Greg
    Participant

    Thanks all. Just to clarify, it is not only a question of the email message not being sent. The private message itself is only sent to one of the recipients. It is as if I only had one name on the “to” line.

    Also, this was an upgrade from 1.01. I assumed that the member themes were automatically upgraded too, but it sounds like that was a bad assumption. Did they change between 1.01 and 1.02?

    #48665
    Jeff Sayre
    Participant

    Someone reporting email issues with groups as well: https://buddypress.org/forums/topic.php?id=3183

    #48664
    Jeff Sayre
    Participant

    All this talk about cookies is making me hungry.

    Initially it sounded similar to the multi-messaging bug that we discovered 4 weeks ago. But that bug did still successfully send the messages to all the email recipients. It was just that the contents of the email were blank depending on whether you were the first person on the recipients’ list or the second.

    This is different since the email is simply not sent to the second person.

    #48660
    Burt Adsit
    Participant

    We don’t even know if cookies are the issue.

    #48659
    Burt Adsit
    Participant

    His cookie domain info was set to “”. It’s not that it wasn’t set. It was set to null. So if wp gets to a spot where it wants to set it to a sane default value, it detects that it’s already set and doesn’t. Probably. The empty string is a value.

    #48658

    They would get loaded after the WPMU ones, so if there’s no check for them pre-existing, then they obviously overwrite them.

    I currently don’t have a cookie_domain setup in wp-config.php either and everything works fine. It should get assigned by WPMU in wp-settings.php if it isn’t in the config.

    In the wp-config.php file, verify:

    $base = '/';
    define('DOMAIN_CURRENT_SITE', 'domain.com' );
    define('PATH_CURRENT_SITE', '/' );
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOGID_CURRENT_SITE', '1' );

    …where domain.com is obviously your domain. If you are using any settings unlike what I posted above, paste them here please.

    #48653
    Burt Adsit
    Participant

    I wonder if the messaging system uses cookies?

    It doesn’t sound really like the issue the 3 of us found. Does it? I just got finished working with somebody yesterday. His problem was that creating one group after another on the same computer caused the 2nd group to adopt the group id of the 1st group.

    The underlying issue and solution was that he didn’t have any cookie domains set in wp-config.php

    https://buddypress.org/forums/topic.php?id=3452

    These cookie issues are tough to debug. We do the ‘works for me’ thing because our wpmu instances are different. Right now bp relies on the wpmu instance supplying the cookie path and domain. Perhaps to cover such situations bp should specify it’s path and domain. Would that bypass the wpmu credentials? Would it matter?

    #48651

    Here we go again. Burt, Jeff, man your battle stations. :)

    We’ll take a look at it.

    Right now on testbp.org it looks like it’s working correctly. Was this an upgrade from a previous BuddyPress install, and if so, did you upgrade your member theme files also?

    #48596
    3125432
    Inactive

    Ilya is correct about not having the ability to delegate.admin powers to a moderator. This is a very crucial issue. In a large community, people come and go. Their interests and time change. So say someone creates a group. They by default become an administrator. That means they are the only one to have the following powers in a group:

    • Group Settings
      Group Avatar
      Manage Members (i.e. bump them to moderators)
      Delete Group

    So if we play out this scenario, and the administrator has fallen off the radar, the group settings from public to private to hidden cannot be changed except by the Buddypress site admin. The Buddypress site admin can elevate members to moderators but they CANNOT add an adminstrator, as far as I can determine. The Buddypress site admin can delete the group but the only way to “delegate” administrator powers would be to follow this scenario:
    Appoint a moderator willing to take over. Have them create a new group, and then do a mass invite to join that new group via a news post or a friends invite.

    Can a administrator be changed at the db level? Not sure.

    What about asking the group administrator to exercise their option to ‘leave a group?’ I have no idea what that would do to the db and the Buddypress system. I’m hoping Andy or Jeff might chime in here on this odd possible outcome.

    Cheers,
    Brian

    #48362
    peterverkooijen
    Participant

    One way off the top of my head would be to inject a JavaScript into the registration page – you’d use the BP name function to get what you want. There is already Wp code for “sanitizing” blog post names, and perhaps other areas too. Then it’s a matter of using the JavaScript to set the HTML field’s value, and CSS to hide it.

    Thanks DJPaul! That sounds doable. Would it be possible to put that in a plugin or would it have to be inserted in core files?

    Well, if you aren’t looking at how the underlying registration functions are coded, then how can you say with such certainty that this is not a WPMU issue?

    What I need wouldn’t touch the underlying registration functions. All I need is another way to insert that username into the database on registration. Hiding a field on a form is basically an html/css issue, stuff that I know enough about.

    Again, if the username would be generated from Buddypress’ required fullname field, it by definition is not a WPMU issue.

    Also getting a more consistent connection in how Buddypress and WPMU handle first name + last name is not a WPMU issue; it’s about how Buddypress (x-profile) hooks into and synchronizes with WPMU.

    WPMU does not allow you to position the username field in a different sequence–not without behind the scenes changes.

    I have already done that once. It’s no problem. It’s annoying WPMU mixes presentation and functionality in the registration, but I’ll work with what I get.

    Without contracting with a coder or coding yourself, you’re out of luck.

    I am trying to code myself where I can and am certainly considering contracting a coder. I need to figure out what I need exactly first. Also with these posts I’m trying to point out some imho weaknesses in Buddypress that should get more attention and judging from the private comments I’ve received I’m not the only one struggling with these issues.

    #48325
    dinhluong
    Participant

    Yes, integration works fine between the two. It’s a private site, but I can PM you a login to use.

    #48240

    In reply to: No extended profile

    3314629
    Inactive

    Hi everybody

    Thank you for the replies. Unfortunately, as i mentioned, there isnt anything relevant in the buddypress submenu in wpmu.All i have is general settings, component setup and forums setup. And even in component setup, i dont have extended profiles, only activity streams, blog tracking, bbpress forums, friends, groups, private messaging. Why am i missing some of the fields you mention?I installed bp and wpmu 3 times already and its always the same.Are there some missing files or something?

    Edit: yeah i went through and somehow i have missing files and directories. weird..

    thanks

    #48095
    dinhluong
    Participant

    My site is private and forces you to log on in order to see anything.

    #47908

    In reply to: Is BuddyPress for me?

    Kunal17
    Participant

    I just recovered from a bad spam incident on my buddypress site. A user (who looked legit) suddenly started private messaging the whole community with obviously spam material resulting in some very angry members :(

    I will go ahead and install Akismet and a captcha during registration H.owever, is it true that each user has to obtain their own key from wordpress.com and plug it into Akismet to get it to work? Is there an alternative that I can just activate for everyone? Or can I just provide all my members with my key to activate their akismet?

    Also, what steps have other BP admin used to prevent the kind of spam that I mentioned above? I do not think Akismet & the captcha during registration would have helped in this situation.

    Is there a plugin that flags users who message a lot of users in a short time? Something like that might help fight spammers.

    Thanks.

    #47632
    Kunal17
    Participant

    Thanks Mike,

    I have been trying to figure out how to include that in the screen that comes up after a user enters their registration details and clicks next. Would you know what I have to edit?

    Actually the problem is not only with activation emails..all emails generated by buddypress (alerts about private messages etc) seem to be going to the spam folders.

    #47497
    gpo1
    Participant

    @P.S. The plugin looks good and how about adding a plugin forcing guest to register to view members & groups profiles ?

    #47496
    petronic
    Participant

    I created plugin that gives users option to choose which profile data they want to share. It is not exactly what you are looking for, but maybe it can help someone.

    For details, please go to:

    http://devbox.computec.de/2009/06/buddypress-xprofile-privacy-plugin/

    r-a-y
    Keymaster

    Burt, I actually did try the first code you mentioned and of course, it did not work in bp-custom.php. I was actually going to post a reply to it, but you already did! Will test out the new code.

    Thanks for your diligence!

    John, one of the blogs in question would be the home blog, so we wouldn’t want to set that to “Private” and disallow search engines ;) But thanks for that little hint, might be useful in the future.

    Cheers guys!

    If a blog is listed as “Private” in the blog settings, that should also exclude it from the list. It will also exclude it from blog search engines and the like. Not sure how private you want this to be, but that’s about as private as it gets. :)

    #47292
    Jeff Sayre
    Participant

    I am confused by what you are asking. You have password protected a post but then you want it to show up in the site activity and on the regular blog posts listing. This is just not how this WP feature works.

    You choose the “Password Protect This Post” option to make a given blog post private. This means that only people with the correct password can see the post, can read it.

    What exactly are you trying to accomplish?

Viewing 25 results - 3,701 through 3,725 (of 3,870 total)
Skip to toolbar