Search Results for 'private'
-
AuthorSearch Results
-
June 5, 2013 at 3:29 pm #165405
In reply to: A potential security issue with avatar uploads
Hugo Ashmore
ParticipantIf you think you’ve found a security issue it really should be reported privately to a core dev.
I don’t think this is an issue, looking at upload avatar functions, but perhaps could use some hardening. Open a ticket.
June 4, 2013 at 12:01 am #165316@mercime
ParticipantWhen I requested membership, it asked me to add a comment, rather than just returning the button disabled with “request sent”. … I also tried bp-default but that made no difference either.
@becskr per link I posted above, that’s the default behavior when membership request is done at the group’s page. And commenting is optional. Could it be that you’re missing the “Send Request” button. Glad you found another solution but it could very well be a JS conflict with another plugin or script.June 1, 2013 at 10:19 pm #165183In reply to: Best way to limit friend requests to avoid spam
Ben Hansen
ParticipantWell activity is already protected by akismet integration. Regarding the friend requests, one thing you can do now (and i have been forced to) to fight spam is only allow private messages to friends in that case the spammer gains the ability to send spam messages to these friends.
June 1, 2013 at 5:04 am #165157In reply to: 1.9 top features – ideas
Asynaptic
Participant@ubernaut and others, re spam, I would appreciate hearing from the more experienced dev and web masters about the pros and cons of a private membership site.
By not allowing just anyone to become a member you automatically arrest spam. Of course, you also impede your growth because legitimate users can’t join.
One way to get around this is to use the great invite anyone plugin and have the original number of ‘seed’ members invite their friends and their friends invite their friends and so on.
Limited but organic growth in members and a total elimination of spam!
What do you guys think?
May 31, 2013 at 8:02 am #165116becskr
ParticipantHi @mercime, I tried your suggestion last night – I switched to twentytwelve, turned off all the plugins and it didn’t work as I expected. When I requested membership, it asked me to add a comment, rather than just returning the button disabled with “request sent”.
I also tried bp-default but that made no difference either.
I happened to have a copy of the old which referenced this instead of what I mentioned above
jq(".group-button a").live('click', function() { var gid = jq(this).parent().attr('id'); gid = gid.split('-'); gid = gid[1]; var nonce = jq(this).attr('href'); nonce = nonce.split('?_wpnonce='); nonce = nonce[1].split('&'); nonce = nonce[0]; var thelink = jq(this); jq.post( ajaxurl, { action: 'joinleave_group', 'cookie': encodeURIComponent(document.cookie), 'gid': gid, '_wpnonce': nonce }, function(response) { var parentdiv = thelink.parent(); if ( !jq('body.directory').length ) location.href = location.href; else { jq(parentdiv).fadeOut(200, function() { parentdiv.fadeIn(200).html(response); } ); } }); return false; } );I replaced the jq with jquery and added it into my custom scripts and it worked fine.
I can’t understand why it wouldn’t work even when I changed to the default or twenty twelve themes though if you said there wasn’t an issue.
May 29, 2013 at 11:21 am #164979Lynn Hill
ParticipantHi Mercime
As it turns out, the problem was not with the User Role Editor.
As Becs has mentioned above, she has added a temp fix to my website. But the only way anyone can request membership to the private group is via the Group Directory and not via the group home page itself.
It seems to be working up to a point, if people understand the difference between adding via the Group Directory and not via the group itself.
I wonder if anyone else has had the same problem.
Thanks for you help.May 29, 2013 at 1:59 am #164968@mercime
Participant@nomad-one The feeds for all your public groups are working. There are no feeds for private groups which is how it’s supposed to be for logged out users.
May 28, 2013 at 8:12 pm #164946tsinclair1982
ParticipantSo, Can I get some clarification from a friendly user.
I want to have multiple BP networks, all exclusive to each other and private.
I want to allow for members to be able to ask to ‘join’ any network and if permission is receive.. he or she is in, without the need to fill out a form..Is this possible?
May 27, 2013 at 10:57 pm #164902@mercime
ParticipantI do not find any issue in joining a private group via the private group’s home page or joining private groups via Groups Directory page or the Private Group’s home page on default installs. https://codex.buddypress.org/user/buddypress-components-and-features/groups/how-to-join-a-private-group/ on Twenty Twelve theme.
May 27, 2013 at 4:16 pm #164889In reply to: Privacy in BuddyPress
bp-help
Participant@janogu
BuddyPress now has profile privacy built in for individual field visibility. BuddyPress Activity Privacy plugin is great at controlling who see’s individual activity posts. https://github.com/bphelp/private_community_for_bp does a decent job of locking down BP pages for logged out visitors. BuddyMobile is great for providing users of mobile devices an app like version of BP. So in conclusion I would say BP privacy has come along way since 2010. It would be nice if more of those features were built into the core in future versions but I am not sure that it would be something the core team would undertake at this point in development. The plugins I mentioned are in the repository with the exception of Private Community For BP in which I provided the GitHub link. Hope this answers your questions. Cheers!May 27, 2013 at 1:05 pm #164881becskr
ParticipantHi all
I have fixed the issue but it has taken me a while to work out what an earth is going. The issue is not the theme, but in global.js so I should not have the only site experiencing this problem.
The issue would only ever be on a single group page, on the group directory you were able to request membership completely fine.
In global.js line 940 references a css id which is only listed on the groups directory
jq('#groups-dir-list').on('click', '.group-button a', function() {therefore the requests won’t work. As a temp fixed I’ve copied the function and referenced
jq('#item-buttons').on('click', '.group-button a', function() {which will reference the request button on a single group. I’m not too good with jquery and have just added this into the default global.js as assume someone will not go and fix this and roll out an update.
May 27, 2013 at 11:06 am #164877In reply to: BuddyPress title shows link
WordBuddyPress
ParticipantI combined my theme with the twenty twelve theme and found out that the error is in the functions.php file. It was because I added the snippet “remove private from post title” I fount on CSS tricks
May 26, 2013 at 9:51 am #164812@mercime
Participant@bakelady Where is the disconnect for any member joining a private group? Which step below?
1. A member clicks on the “Request Membership” button of a private group, the button should become “Membership Requested.”
2. Group Admin gets notification via email (if enabled) and via notification bubble in WP Admin/Toolbar
3. Group Admin clicks on notification that a certain member is requesting membership. Click brings Group Admin to group’s Admin > Requests
4. Group Admin chooses “Accept” or “Reject” membership request
5. Accepted Member gets notification via email (if enabled) and via notification bubble in WP Admin/Toolbar that he/she was accepted to that private groupMay 26, 2013 at 7:32 am #164808Lynn Hill
Participant@mercime. I’ve just discovered that although I deactivated the User Role editor, people are still not able to join the private group, even though I’ve successfully done a test with a new testing member.
I’ll have to wait until my website theme designer gets back to me to see if she can sort this out. If we manage to sort this out I’ll let you know for future reference.
Thanks
LynnMay 26, 2013 at 1:08 am #164801@mercime
Participant@bakelady 🙂 Thanks for posting about the conflict with the User Role Editor and private groups.
But I still need to find out why ‘contributors’ are not able to add blog posts and events
Contributors should be able to submit a post from the backend (wp-admin) but it will need Site/Super Admin to approve and publish the post.
May 25, 2013 at 1:46 pm #164776Lynn Hill
Participant@mercime Thanks for the reply. I didn’t design the custom theme so not confident in changing to Twenty Twelve to test your theory, I’ll have to wait for my friend, the theme designer, to get back to me to test it.
But I’ve now established that it’s ( when deactivated) the User Role editor that is stopping people from joining a private group within the website. It had a very recent update. But I still need to find out why ‘contributors’ are not able to add blog posts and events
I’ll keep plugging away. No pun intended 🙂
Thanks again.
LynnMay 25, 2013 at 12:50 am #164749@mercime
Participant@bakelady Error logs? If you change to Twenty Twelve theme or the BP Default theme, is the issue resolved?
May 24, 2013 at 12:30 am #164674bp-help
Participant@echofoxtrot
This plugin works and is more complete as far as building a private community.
https://github.com/bphelp/private_community_for_bpMay 23, 2013 at 7:59 pm #164649In reply to: Multi-Site, multi-network questions
tsinclair1982
ParticipantPlease help me get this straight in my mind, i need to reduce it to writing before i go find a developer to help.
I need multi-site, multi-network buddypress and wordpress. SINGLE signin point of entery and then multi private networks. Some networks may have top level domain and some maybe “behind” a website hosted on wordpress.
Is this a possible layout?
Thanks
May 19, 2013 at 5:36 pm #164324In reply to: Create private membership site with BuddyPress
angslycke
ParticipantI’ve upgraded to BuddyPress 1.7.2 in my staging area and the update went smooth. Most functions seem to work fine. However, when I tried registering a new user the above filter didn’t work. BuddyPress sent the standard activation e-mail to the new user’s e-mail instead of the admin e-mail (please read the first post in this thread to review the new member process I have).
The function bp_core_signup_send_validation_email_to is in bp-members/bp-members-functions.php on line 1361 and I’ve verified that it’s unchanged since BuddyPress 1.6.4 which is what I’m running now. Does anyone know if there’s been any other change affecting this? Thanks!
May 19, 2013 at 9:55 am #164311GGG_TXL
ParticipantAlso in case of a visible category “Gruppenforen” the behaviour is identical.
May 19, 2013 at 9:50 am #164310GGG_TXL
ParticipantMeanwhile I did find, that user/template-tags.php did have a known issue. But patching that did not change behaviour at a specific way to reproduce the problem:
User X is member of group A, but not group B. Both groups do have hidden forums. Both Forums are in a hidden Category “Gruppenforen” (German for group forums).
When User X goes to the forum of group A and then follows the link in the group to “Gruppenforen” and onlky at that moment the widget for recent topics shows all topics in “Gruppenforen” includigts those of group B, that user X is not supposed to see.May 18, 2013 at 7:47 am #164252In reply to: How can I get the activity like facebooks?
ljmac
Participant@bp-help
Actually, if you can do it as a universal function, I can probably convert it to a page-specific function myself (I’ve actually split the main activity stream into five separate pages with different scopes on my site already). I could send you my set-up, but it might be better to do it privately, as the site contains some nudity. 🙂
May 16, 2013 at 9:20 am #164059Peter Hardy-vanDoorn
ParticipantThanks but, like kraigg there, I am running bbPress 2.3.2 so this issue is very much not fixed!
May 16, 2013 at 1:10 am #164043@mercime
Participant -
AuthorSearch Results