Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 3,676 through 3,700 (of 3,875 total)
  • Author
    Search Results
  • #50787
    Paul Wong-Gibbs
    Keymaster

    See 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.

    Paul Wong-Gibbs
    Keymaster

    I 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.

    webatease
    Participant

    Can someone confirm whether this is a known with no current fix in the existing version or plugins?

    webatease
    Participant

    I 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.”

    #50461
    Boone Gorges
    Keymaster

    You’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.

    #50444
    jugoretz
    Participant

    This 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?

    Burt Adsit
    Participant

    I 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.

    lokers
    Participant

    I 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.

    r-a-y
    Keymaster

    I 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.

    lokers
    Participant

    ok, 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?

    lokers
    Participant

    yes, 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.

    plrk
    Participant

    bbPress 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.

    lokers
    Participant

    Just 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).

    It’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.

    r-a-y
    Keymaster

    Ah 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/admin

    I 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?

    abcde666
    Participant

    Hi 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 ?

    r-a-y
    Keymaster

    Hmm… 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.

    abcde666
    Participant

    this 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….

    Paul Wong-Gibbs
    Keymaster

    Excellent! Someone else with this problem. If a third person could test and confirm, we’ve got ourselves a live one!

    #49869
    Murphygonzalez
    Participant

    Oops…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.

    #49840
    r-a-y
    Keymaster

    Rohan, think before you type.

    A private community would want their pages and content private.

    #49744

    As 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. :D

    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.

    #49662

    In reply to: BP and Joomla

    kennibc
    Participant

    The 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.

    http://dearbornschools.org

    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.

    #49619

    In reply to: Private Network

    peterverkooijen
    Participant

    There 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.

    #49615

    In reply to: Private Network

    helpy
    Participant

    Did you find a way to do this?

Viewing 25 results - 3,676 through 3,700 (of 3,875 total)
Skip to toolbar