Search Results for 'private'
-
AuthorSearch Results
-
August 8, 2009 at 9:37 pm #50787
In reply to: Private xprofile fields
Paul Wong-Gibbs
KeymasterSee https://buddypress.org/forums/topic/faq-how-to-code-snippets-and-solutions, “How to hide selected profile fields” and “How to show secondary profile fields while hiding the “Base” profile fields in a user profile”.
These should get you started and this has been discussed elsewhere on the forums, so do a search.
August 7, 2009 at 7:39 pm #50746Paul Wong-Gibbs
KeymasterI have “WordPress Failure Notice” error you are getting, webatease with BP v1.0.3. I haven’t spent any time investigating it further yet tho.
August 7, 2009 at 5:33 pm #50739webatease
ParticipantCan someone confirm whether this is a known with no current fix in the existing version or plugins?
August 6, 2009 at 4:14 pm #50679webatease
ParticipantI am getting the emails appropriately, but when I click on the link to approve/accept the group add, it gives me a website with “WordPress Failure Notice” at the browser title, and it asks “Are you sure you want to do this?” But it has no option for me to select yes, or check anything to actually approve. So this is still in the queue.
Similarly, I cannot reject the request – and if I click on the link in the email that says to view the request, it takes me to the user’s profile – but the request is not listed. In fact, in his of groups, it lists (1) as the number of groups (assuming because he requested), but then underneath it says he “hasn’t joined any groups yet.”
August 1, 2009 at 12:51 pm #50461Boone Gorges
KeymasterYou’ve got to replace the whole line. (Or just back out !(int) at the beginning of the if statement and replace it with 1 >, which amounts to the same thing.) Let me know how it works.
July 31, 2009 at 11:30 pm #50444jugoretz
ParticipantThis does look useful to me, at least! But I want to confirm before I make the change.
My line 267 in bp-blogs-classes.php currently reads
if ( !(int)$wpdb->get_var( $wpdb->prepare( "SELECT DISTINCT public FROM {$wpdb->base_prefix}blogs WHERE blog_id = %d", $blog_id ) ) )So you’re saying I should just replace
$wpdb->get_var( $wpdb->prepare( "SELECT DISTINCT public FROM {$wpdb->base_prefix}blogs WHERE blog_id = %d", $blog_id ) ) )within that line? Or the whole line?
July 28, 2009 at 1:32 pm #50179Burt Adsit
ParticipantI haven’t updated bpgroup to be compatible with trunk bp yet. There’s a trac ticket by me whining about the lack of wp actions on group creation with the new group creation stuff.
July 28, 2009 at 8:51 am #50171lokers
ParticipantI have tried that too. It doesn’t work that’s why I’ve edited the core. Also, I sent PM to Burt with link to this post few days ago.
July 24, 2009 at 6:09 pm #49986r-a-y
KeymasterI experienced a similar problem as well.
Did you edit a BuddyPress core file using a bpGroups function?
You should let Burt Adsit know of your fix, so maybe he can provide a cleaner solution using his plugin instead of editing the core:
https://buddypress.org/developers/burtadsit
—
Try adding this to line 161 of /wp-content/mu-plugins/oci_bp_group_forums.php
add_action( 'groups_create_group_step2_save', 'oci_bb_group_updated', 10, 1 );See if that does the same thing.
July 24, 2009 at 12:24 pm #49965lokers
Participantok, I’ve got temporary solution.
File: wp-content/plugins/buddypress/bp-groups.php
Line 1481: yous should have (inside function groups_create_group() / case 2:)
after:
do_action( ‘groups_create_group_step2_save’ );
I’ve added this line:
oci_bb_group_updated($group_obj->id);
So it works, but i had to modify this file which I am not happy with. I guess there is another way of doing this properly. If anyone will find better solution, could you please let me know too?
July 24, 2009 at 11:54 am #49961lokers
Participantyes, I’ve got this plugin (bpGroups), it works fine but it has this one bug and I don’t know how to fix this damn thing.
Basicaly, when you are creating a new group there is a checkbox to create a forum on bb site too. Below are 3 group options: public, private, hidden.
Now, the script creates forum (default is public), then it changes settings for a group (private or hidden), and it should do this at a first place so it could inherit proper group settings when creating a forum. Do you know what I mean? I just want to swap the order somewhere inside the code to make it working. It should first update group settings, then create a forum. That way it would work properly.
I googled about this etc, looks like nobody’s aware of this bug cos I couldn’t find any answers and nobody even point this anywhere.
July 24, 2009 at 11:43 am #49960plrk
ParticipantbbPress does not have any native ways to hide forums that should be hidden. You can do as I have done – installing a “blank” theme that redirects users to your main site, limiting users to use the built-in group forums functionality only – or you could install a bbPress plugin that hides forums from those that are not allowed to view them. There is such a plugin, intended specifically for buddypress users, but I can’t remember what it is called.
July 24, 2009 at 11:06 am #49959lokers
ParticipantJust to clarify. I am talking about plugin for buddypress to communicate with bbpress. And by saying forum is visible I mean forum created with this plugin on bbpress side is visible (but should inherit settings from group).
July 24, 2009 at 1:48 am #49942John James Jacoby
KeymasterIt’s important to note that BuddyPress is an opensource project, just like all of the other WordPress related ones. That being said, if you find something isn’t working up to your expectations you are free to develop or contribute to the project to make it work how you wish. As it stands today, BuddyPress does a good job of keeping tidy and cleaning up after itself; better than most plugins in my opinion. The signups table is specific to MU and is a new addition, so you can expect it’s functionality to be misunderstood. When a user is deleted, the idea is that their signup remain in the signups table as proof of their previous registration. One could even argue that removing all user data is a bad idea in the event someone ever needs it later, say for law enforcement purposes.
Regarding blocking spam registrations, read some articles about Twitter. Some analysts have said that nearly 50% of all registrations on Twitter are spammers. Crazy eh? There just isn’t a fool proof way to prevent it from happening unfortunately.
Also, while none of the moderators are directly employed by Automattic, it’s about the best internship I think anyone in our respective businesses can hope for. We all do our best to represent Automattic and are here to help to the best of our abilities.
If you can find a specific bug or flaw in how users are currently managed between BuddyPress and WordPress, you’re welcome to respond here or file ticket in the trac. If you feel your opinion warrants more attention you can message me privately if you’d like also, and I’d be happy to help further.
July 23, 2009 at 7:25 pm #49926r-a-y
KeymasterAh sorry about the lingo, Erich73!
I meant on my local, test install of WPMU and BP.
I can’t say for sure that upgrading will fix your problem, because if DJPaul is having the same problem, then it must be a legitimate problem!
Although I’m not sure which version of BP DJPaul is running.
—
I’m just going to try and clarify a few things here.
In the “private group invite” email I received, this is what I got:
One of your friends Ray has invited you to the group: "Private Group".
To view your group invites visit: http://localhost.localdomain/members/test/groups/invites
To view the group visit: http://localhost.localdomain/groups/private-group
To view Ray's profile visit: http://localhost.localdomain/members/adminI click on the first link and it takes me to a BP Group Invites page, which allows me to accept or reject the invite.
—
This is the process you guys are talking about right?
Or are you talking about accept / reject links from within the email?
July 23, 2009 at 7:12 pm #49924abcde666
ParticipantHi r-a-y,
many thanks for your answer !
I do not understand what “sandbox” means, anyhow: will it be working when I do upgrade my website to the latest WPMU and latest BP-version ?
July 23, 2009 at 6:48 pm #49921r-a-y
KeymasterHmm… Erich73 and DJPaul, private group invite worked for me on my sandbox BP install.
I’m on WPMU 2.8.1 and BP 1.0.3.
July 23, 2009 at 6:28 pm #49919abcde666
Participantthis issue is also mentioned by another person at the german-language-Forum of http://www.buddypress.de
So we are not the only ones having this issue….
July 23, 2009 at 3:48 pm #49903Paul Wong-Gibbs
KeymasterExcellent! Someone else with this problem. If a third person could test and confirm, we’ve got ourselves a live one!
July 23, 2009 at 10:15 am #49869In reply to: RSS wiget can't get MU blogs feeds
Murphygonzalez
ParticipantOops…send me an email at murphygonzalez@gmail.com and I will give you access to my site (you don’t have to do this if you don’t want or need to).
Regardless, when I pull up the page it looks like the feed works ok. I am puzzled and I think that I am just missing something here….something simple.
@Rohan….just so you know…. I have a site that is password protected for a reason. It is a private community. But we want to have a blog to display news and events and we want a listing of that blogs entries on a side bar. If there is another way to do this…a better way please feel free to contribute.
July 22, 2009 at 10:51 pm #49840In reply to: RSS wiget can't get MU blogs feeds
r-a-y
KeymasterRohan, think before you type.
A private community would want their pages and content private.
July 22, 2009 at 1:19 am #49744In reply to: Should we use WP/BP or another platform?
John James Jacoby
KeymasterAs enthusiastic as you are about WordPress, most of us are about BuddyPress, so without speaking for anyone else, my opinion is biased towards using BuddyPress for every website. My moms knitting website will use BuddyPress.

If you want users to be able to blog about their own stuff without moderation, then you want WordPressMU, because each user gets their own blog to talk about whatever they want; WHATEVER they want. That means even though your site is about fashion, that doesn’t stop them from talking about puppies.
If you want these users to be able to interact with each other, and have personalities, then you want BuddyPress.BP will allow your users to talk to each other privately, form groups to talk about things with each other, and comment on each others profiles.
The reasons NOT to use BuddyPress? At the moment there’s very little restrictive control over what people do. You can’t stop someone from putting profanity in their profile. You can’t block a user from messaging you or others. Also, the platform is still evolving as much as WordPress and bbPress are. That means that if you like to keep your website on the cutting edge, you’ll find it hard to install everything and leave it alone, as enhancements and improvements are coming through at least monthly, and so far upgrading isn’t a one click thing yet (almost though)
Those is my opinionses… Not sure how helpful they is, but if you like WordPress, you will probably see the potential of BuddyPress for what you want your website to be.
July 20, 2009 at 7:17 pm #49662In reply to: BP and Joomla
kennibc
ParticipantThe reason I am asking is that I work for a K-12 school district and we recently made a big push to using open source software. We are using Joomla for the main district website, Deki Wiki for each of 32 school websites, Moodle for online learning, WPMU+BP for about 650 teacher blogs, PHP Motion for video sharing, and an additional install of WPMUBP for student created blogs which is private.
Check out iBlog for BP, D-Tube for PHP motion, or visit any of the school websites for Deki Wiki. Moodle is iLearn and requires authorization to get in.
If there is anyway to further integrate BP and Joomla, please let me know.
July 20, 2009 at 1:49 am #49619In reply to: Private Network
peterverkooijen
ParticipantThere have been several threads about this, including some useful code, but also lots of loose ends and confusion:
Securing components from non logged in users
Make access members/groups sections members-only
Plugin to show components to registered Users only
Apparently a “full-featured privacy (authorization) component for BuddyPress” is in the works for a future release.
July 19, 2009 at 9:13 pm #49615In reply to: Private Network
helpy
ParticipantDid you find a way to do this?
-
AuthorSearch Results