Search Results for 'private'
-
AuthorSearch Results
-
March 27, 2014 at 10:39 pm #180414
In reply to: "Forums for Groups" vs "Site Wide Forums"
Anonymous User 5853594
InactiveBasically yes.
The Sitewide Forums are available to everyone, while the Group Forums are a private forums for a specific group. Other than that, they just share all the normal forum functions.March 25, 2014 at 3:51 am #180268cukeving
ParticipantThe site is still in dev and locked with userid and password or IP address.
Is there a way to contact you privately?
March 15, 2014 at 1:02 pm #179835In reply to: Notification still not being displayed
colabsadmin
ParticipantHave you looked in the db to verify they weren’t deletes? Do you have any plugins installed that might effect that? I remember testing a private activity once that sent notifications even though someone didnt have access to them.
You can prove your theory about the majority being messages by looking in the notification table. In there there are fields that will tell you what component the notification is for (messages, mentions, friend requests, and so on). Hover you mouse over the read/delete actions for the notifications with missing titles. You’ll see the notification ID. Look for those specific IDs to see if there is a common component where this is happening. Either way, you can get the item_id (what you were actually notified on) and verify that item actually exists. If the component is ‘activity’ look for item_id in the activity table. If its from the messages component, then you can look for the item_id in the messages_messages table. (though even if the sender deletes the message, it will still be in the db, so this might not get you anywhere actually)
I’m curious to know what you find. Good luck.
March 15, 2014 at 4:57 am #179827In reply to: Help! button "post update" is not present
Patryk
ParticipantI have the same thing to me and not display private message button, etc
March 13, 2014 at 5:19 pm #179715mcpeanut
ParticipantFirst question would be to ask if your on shared hosting vps or private server?
maybee this link will help you if you take a look. i dont know what hosting your with but have a read anyhows.
https://wordpress.org/support/topic/godaddy-iis-and-removing-indexphp-in-urlp.s i dont know if there is a solution within that post but it may help you find out a little more.
also just found this post too for you.
https://wordpress.org/support/topic/getting-rid-of-indexphp-from-url
March 13, 2014 at 4:40 pm #179712In reply to: Protecting BuddyPress Members
bp-help
Participant@xxxtristamxxx
Try: https://wordpress.org/plugins/private-bp-pages/
Full disclosure, I am the plugin author.
Good luck!March 11, 2014 at 1:06 pm #179609In reply to: 2.0 top features – ideas
mcpeanut
Participant1. Event integration would be great, including inviting people to an event and being able to mark as attending not attending etc for users.
2.More privacy options on public groups such as being able to stop them from showing in the activity stream altogether but still allowing people to join without requesting.
3.Option to turn on some form of automatic activity refresh (for those people who have dedicated servers with good resources)
4.Privacy in general, being able to set your profile to public private or friends only etc.
5.Notifications to show avatars.
March 9, 2014 at 8:49 pm #179519In reply to: 404 on requesting membership to a group
BuddyBoss
ParticipantMarch 9, 2014 at 6:35 am #179496In reply to: request membership – PAGE NOT FOUND
Craig
ParticipantMarch 7, 2014 at 6:41 pm #179434In reply to: Stop BuddyPress SPAM
contrasupport
ParticipantMost of wordpress plugins mentions above work like
Attacker > HTTP server > PHP > WordPress > PLUGINS
We all need to have something before WordPress that’s why I recommend
NinjaFirewall (I do not have any relation with the plugin creator)
https://wordpress.org/plugins/ninjafirewall/
Block the attacker before the WordPress
Attacker > HTTP server > PHP > NinjaFirewall > WordPress > PLUGINS
As always in installing any plugins that possibly can block your admin access you have to read the Installation note and have access to the FTP.
NinjaFirewall will work as another layer to protect your site.
In addition if you have not done it:
- Change your “Admin” username to something dificult and at least 10 characters (+) but easily to remember (+ for you – for security) or you have to read a note (-) safely secured in your safe locker (+)
- Make your password at least 25 COMBINATION of characters (+) but easily to remember (+ for you – for security) or you have to read a note (-) safely secured in your safe locker (+)
NinjaFirewall:
- Web Application Firewall
- Full standalone web application firewall
- Multi-site support
- Compatible with shared hosting accounts
- Protects against RFI, LFI, XSS, code execution, SQL injections, brute
- force scanners, shell scripts, backdoors and many other threats
- Scans and/or sanitises GET / POST requests, HTTP / HTTPS traffic, cookies, server variables (HTTP_USER_AGENT, HTTP_REFERER, PHP_SELF, PATH_TRANSLATED, PATH_INFO)
- Sanitises variables names and values
- Advanced filtering options (ASCII control characters, NULL byte, PHP built
- in wrappers, base64 decoder)
- Blocks username enumeration scanning attempts through the author archives and the login page
- Blocks/allows uploads, sanitises uploaded file names
- Blocks suspicious bots and scanners
- Hides PHP error and notice messages
- Blocks direct access to PHP scripts located inside specific directories
- Whitelist option for WordPress administrator(s), localhost and private IP address spaces
- Configurable HTTP return code and message
- Rules editor to enable/disable built-in security rules
- Activity log and statistics
- Debugging mode
March 6, 2014 at 3:57 pm #179378In reply to: Help! Where is the private message option?
Doremdou
ParticipantHi π
Did you enable the messaging system in the first place?
If not you can activate it in : Settings/Buddypress/ and on the first page, check the messaging boxIf you enabled this option already you should have a tab in your profil to send private message
[Edit] Wait what do you mean by “forums”? there are no forums on buddypress, are you talking about bbpress?
March 5, 2014 at 8:40 pm #179350Doremdou
ParticipantI tried to create a shortcode to show the join/leave button using the buddypress-functions but can’t make it to work… π
What am I doing wrong?I would like a shortcode like this :
[groupbutton name=”party1″]
I tried with this code for a join button only at first:
add_shortcode( 'groupbutton', 'groupbutton_check_shortcode' ); function groupbutton_check_shortcode( $attr ) { extract( shortcode_atts( array( 'name' => 'read' ), $attr ) ); $current_group_id = BP_Groups_Group::get_id_from_slug($name); $group = groups_get_group( array( 'group_id' => $current_group_id ) ); if(bp_loggedin_user_id()) { if( 'public' == $group->status ) { echo '<a id="group-' . esc_attr( $current_group_id ) . '" class="join-group" rel="join" title="' . __( 'Join Group', 'buddypress' ) . '" href="' . wp_nonce_url( bp_get_group_permalink( $group ) . 'join', 'groups_join_group' ) . '">' . __( 'Join Group', 'buddypress' ) . '</a>'; } } }I am not a developer at all so I dont understand everything but I am trying… :/
Cant figure what I am doing wrong… and why it does not display anything at all.Thank you for your help and sorry for my bad english π
PS: I would like to use all cases of buttons like here on the buddypress-functions.php:
function bp_legacy_theme_ajax_joinleave_group() { // Bail if not a POST action if ( 'POST' !== strtoupper( $_SERVER['REQUEST_METHOD'] ) ) return; // Cast gid as integer $group_id = (int) $_POST['gid']; if ( groups_is_user_banned( bp_loggedin_user_id(), $group_id ) ) return; if ( ! $group = groups_get_group( array( 'group_id' => $group_id ) ) ) return; if ( ! groups_is_user_member( bp_loggedin_user_id(), $group->id ) ) { if ( 'public' == $group->status ) { check_ajax_referer( 'groups_join_group' ); if ( ! groups_join_group( $group->id ) ) { _e( 'Error joining group', 'buddypress' ); } else { echo '<a id="group-' . esc_attr( $group->id ) . '" class="leave-group" rel="leave" title="' . __( 'Leave Group', 'buddypress' ) . '" href="' . wp_nonce_url( bp_get_group_permalink( $group ) . 'leave-group', 'groups_leave_group' ) . '">' . __( 'Leave Group', 'buddypress' ) . '</a>'; } } elseif ( 'private' == $group->status ) { // If the user has already been invited, then this is // an Accept Invitation button if ( groups_check_user_has_invite( bp_loggedin_user_id(), $group->id ) ) { check_ajax_referer( 'groups_accept_invite' ); if ( ! groups_accept_invite( bp_loggedin_user_id(), $group->id ) ) { _e( 'Error requesting membership', 'buddypress' ); } else { echo '<a id="group-' . esc_attr( $group->id ) . '" class="leave-group" rel="leave" title="' . __( 'Leave Group', 'buddypress' ) . '" href="' . wp_nonce_url( bp_get_group_permalink( $group ) . 'leave-group', 'groups_leave_group' ) . '">' . __( 'Leave Group', 'buddypress' ) . '</a>'; } // Otherwise, it's a Request Membership button } else { check_ajax_referer( 'groups_request_membership' ); if ( ! groups_send_membership_request( bp_loggedin_user_id(), $group->id ) ) { _e( 'Error requesting membership', 'buddypress' ); } else { echo '<a id="group-' . esc_attr( $group->id ) . '" class="membership-requested" rel="membership-requested" title="' . __( 'Membership Requested', 'buddypress' ) . '" href="' . bp_get_group_permalink( $group ) . '">' . __( 'Membership Requested', 'buddypress' ) . '</a>'; } } } } else { check_ajax_referer( 'groups_leave_group' ); if ( ! groups_leave_group( $group->id ) ) { _e( 'Error leaving group', 'buddypress' ); } elseif ( 'public' == $group->status ) { echo '<a id="group-' . esc_attr( $group->id ) . '" class="join-group" rel="join" title="' . __( 'Join Group', 'buddypress' ) . '" href="' . wp_nonce_url( bp_get_group_permalink( $group ) . 'join', 'groups_join_group' ) . '">' . __( 'Join Group', 'buddypress' ) . '</a>'; } elseif ( 'private' == $group->status ) { echo '<a id="group-' . esc_attr( $group->id ) . '" class="request-membership" rel="join" title="' . __( 'Request Membership', 'buddypress' ) . '" href="' . wp_nonce_url( bp_get_group_permalink( $group ) . 'request-membership', 'groups_send_membership_request' ) . '">' . __( 'Request Membership', 'buddypress' ) . '</a>'; } } exit; } /** * Close and keep closed site wide notices from an admin in the sidebar, via a POST request. * * @return mixed String on error, void on success * @since BuddyPress (1.2) */ function bp_legacy_theme_ajax_close_notice() { // Bail if not a POST action if ( 'POST' !== strtoupper( $_SERVER['REQUEST_METHOD'] ) ) return; if ( ! isset( $_POST['notice_id'] ) ) { echo "-1<div id='message' class='error'><p>" . __( 'There was a problem closing the notice.', 'buddypress' ) . '</p></div>'; } else { $user_id = get_current_user_id(); $notice_ids = bp_get_user_meta( $user_id, 'closed_notices', true ); $notice_ids[] = (int) $_POST['notice_id']; bp_update_user_meta( $user_id, 'closed_notices', $notice_ids ); } exit; }March 2, 2014 at 5:34 pm #179166In reply to: Make Content Private
Squirrel
ParticipantActually that Private BP Pages plugin looks pretty much ideal for what you want @mrbirl.
March 1, 2014 at 7:18 pm #179129In reply to: Make Content Private
mrbirl
ParticipantMarch 1, 2014 at 7:12 pm #179128In reply to: Make Content Private
aces
ParticipantIt would help if you listed the plugins, and details about anything else you have tried such as code snippets.
Did you try https://wordpress.org/plugins/private-bp-pages/ – if so what was the problem?
March 1, 2014 at 1:22 am #179104In reply to: Privacy and Buddypress
Clara
ParticipantNot sure if you are still out there, but I am trying very hard (not a coder, btw) to create a site that will allow the members control over who can see their postings, friendships etc.
I cannot figure out how to do it with buddypress. Every solution that has been offered has not actually done the trick, be it a plug in or adding code.
My site is a paid membership site – and restricted to members of a local “in person” social group.
The way buddypress is working, even with the “activity privacy” plug in installed is this:
there is a page called activity stream. It has 4 tabs in it:
all members
friends
@mentions
rssEverytime someone joins the site, it shows up in the all members tab
everytime someone accepts a friend request, it shows up in the all members tab
everytime anyone posts any status updates, photos, or anything, it shows up in the all members tabanyone who has a membership can view the all members tab, therefore, nothing a member does is private.
I have not tested emails, so perhaps emails are private, but so far, nothing else is.
I have tried in vain to find a way to be free of the all members tab and cannot get a solution. I am considering abandoning buddypress and trying symposium and seeing if that offers privacy.
Once the all members tab is resolved, you would also need to resolve similar issue with rss feeds, as that pumps all info out there as well, as best I can tell.
Buddypress seems to be designed as a very very public space and I fear that trying to accomplish any privacy is a losing battle.
If you find something that does work, I would appreciate knowing what it is as I am at my wits end with it.
Best of luck to you.
February 28, 2014 at 6:43 pm #179075In reply to: 2 news feed/ activity pages
Renato Alves
ModeratorI see. One idea could be separating the users from different url:
paied.yourwebsite.com
free.yourwebsite.comWhen a person is paying, just change it to another website and they will be able to post privately. Apart from that, I can’t think of any other way. π
February 26, 2014 at 6:40 pm #178945In reply to: No need for Members, Register, or Activate?
Henry Wright
Moderator…can I just create those pages to satisfy BuddyPress and then just make them private?
You can. In fact, if you’re sure you’ll never need them you can perform a 301 permanent redirect to ensure they never show. For example:
function redirect_pages() { if ( bp_is_register_page() || bp_is_activation_page() || bp_is_members_component() ) { wp_redirect( home_url(), 301 ); exit(); } } add_action( 'template_redirect', 'redirect_pages' );If for some reason you find you do in fact need the activation page, then remove
|| bp_is_activation_page()from the above code.February 25, 2014 at 4:46 pm #178884In reply to: Group Activity Stream > Site Activity Stream
Zane
ParticipantMy request is a duplicate of another from a few months ago and can be ignored. Please reply to this request (an associated ticket has been opened and linked to in this other thread).
https://buddypress.org/support/topic/posts-to-private-groups-dont-show-up-in-activity-stream/
Thanks!
February 25, 2014 at 4:36 pm #178881In reply to: Group Activity Stream > Site Activity Stream
Zane
ParticipantI just created my first public group and I see that the groups activity does flow to the overall activity stream.
My request is now, is there any way to make Private groups show up on the activity stream of users who are members of the private group? Without this functionality people will not see what is going on in the Private group and will likely not participate as much. I appreciate any direction π
February 23, 2014 at 10:45 pm #178806Henry Wright
ModeratorI can’t really tell for sure but reading your post it seems you have ‘private tags’ that you’re wrapping around stuff you’d like to keep private?
Maybe try wrapping these tags around the members loop
bp_has_members()?February 22, 2014 at 5:44 pm #178762In reply to: Need help with Messaging
Asynaptic
ParticipantRick, glad that we’re clearing up some confusion. To confirm, yes, messaging is totally different than posts. Please read the codex links provided. Also, if you really want to take buddypress for a test drive, set up a development site either on a live site or right on your own computer using http://www.instantwp.com/ and then add some “fake” users and messages, and data using this plugin: https://wordpress.org/plugins/bp-default-data/
And then jump in there and click around like crazy, edit, message, post, and see what happens! this is the best way to really check things out without doing any damage to your own site. Nothing compares to getting your hands dirty and mucking about (in a safe test environment).
This way you can really understand what messaging is, what private messaging is, broadcasting from admin to all members, etc. You can also add/remove plugins and check out their functionality, all in the comfort of your own computer’s hard drive or a test environment set up at a test domain/host that you control/own.
Also, keep in mind that buddypress has many features but you do not have to enable them! for example, there is a feature for groups. But you don’t have to enable it! you can add a forum (using bbPress) but you don’t have to! you can have private messaging so members can send private messages to each other… but, you guessed it, you don’t have to enable this feature. Also, another powerful feature is that you can give members of your site the ability to start their own blogs! this is called “multisite” but you can choose to enable this or not. Same goes for “friend connections” feature… etc.
My suggestion is to start with a very simple starting point and then as your community grows, add features that they require or need. It is a far too common mistake for new buddypress users to just turn everything on at the start.
If you don’t want to restrict your membership in any way or to collect money online from them then you don’t need anything else other than buddypress and wordpress. But look through the membership plugin links I provided to familiarize yourself with them and their features just in case. A few are completely free and still have tonnes of features.
Finally, keep in mind that spam registrations do happen. There are many guides and tools to mitigate spam membership registrations. Here’s a good start:
Google is your friend for more info on spam fighting.
February 22, 2014 at 12:45 am #178746In reply to: Need help with Messaging
Asynaptic
ParticipantI’ll add this to clarify further, a person can join your website but with a membership plugin you can have several tiers which would act as a filter to designate what they can and can’t do or see on the site.
So for example, a regular member can read the blog. A ‘premium’ or ‘conference’ member can read the blog, write comments, read the conference specific blog posts, private message other conference members, etc.
Some membership plugins are quite powerful and granular… if you need that sort of thing.
February 22, 2014 at 12:37 am #178745In reply to: Need help with Messaging
Asynaptic
Participantok, let me see if I understand you — if not, correct me π
1) you have a website at: http://www.betterpresenting.com/
2) you have created another separate website at http://www.summitcommunity.org/ where you want to install buddypress and create a community website for a conferenceok I think before we even get to the ‘messaging’ or ‘post’ issue, we have to clarify something.
As of now, http://www.summitcommunity.org/ forwards to http://www.betterpresenting.com/community/
Buddypress automagically works seamlessly with your existing theme so it looks good… this wasn’t always the case so thank the developers who added this feature just a few months ago! moving on from minor digression…
So it looks like you don’t have two separate sites but your domain at summitcommunity.org is 301 redirecting to http://www.betterpresenting.com/community/ and this is where you have installed buddypress.
Is that correct?
If this is correct, then we can move on to the other question you posed.
I went back and read you original post that you referenced above:
https://buddypress.org/support/topic/installing-bp-into-a-portion-of-a-site/In that message you write:
“If I understand correctly (a reach at best), posts become messages. But I post at betterpresenting.com about a great many things, not just ones that would be for the conference community.”
Posts do not become messages. Posts and messages are separate things. ok?
A post is well, a blog post. I’m sure you know what that is.
A message is an internal message sent from one member to another (if you have enabled this feature of buddypress – you don’t necessarily have to! or from admin to members)
https://codex.buddypress.org/buddypress-components-and-features/messages/
https://codex.buddypress.org/component/private-messages/Also, admin can send a ‘broadcast’ message to all members with this plugin:
Hope that clarifies words and definitions so we have a standard vocabulary with which to communicate!
Now, if I understand the rest of your original message accurately, what you’re saying is that you run a website and have an annual conference and would like to know how buddypress can help you with both. And you want to make sure there is a way to keep the conference ‘stuff’ separate from the other regular website ‘stuff’.
To solve this, you don’t need subdomains or extra installs of wordpress or any of that. Here’s what I would do:
I would install buddypress as a plugin in your existing wordpress blog (the ‘main’ site). Then I would use the buddypress features to run your annual conference by also enabling a membership plugin.
Using the membership plugin you can post ‘conference’ related material and pages which ONLY THE MEMBERS SEE and interact with. To someone who just comes to your site, all they see is your regular blog/site… until or if they ‘login’ and have paid or are accepted as ‘conference’ participants.
People who are members of the conference (aka buddypress + membership powered) site can see and interact with both the conference portion of your site as well as the regular part of the site.
If I have hit the nail on the head and accurately understood your needs, here are some reference material:
http://chrislema.com/comparing-wordpress-membership-plugins/
If not, let me know!
February 21, 2014 at 10:40 pm #178739In reply to: Need help with Messaging
Asynaptic
ParticipantHi Rick, I think you need to clarify exactly what you’re trying to do. What you write is very confusing and may have lead to your and others’ frustration in attempting to help you:
“But our main site has an active blog and I donβt know how to separate posts that are intended to be read by the entire world and shown across the entire site from messages that are intended to go just to the Summit community.”
Are we talking about messaging? as in private and internal messaging between members and between admin and members? or are we talking about blog posts that are read by all or some parts of the community?
If you want to restrict blog posts to just members, this is extremely easy and there are many plugins that handle this.
https://wordpress.org/plugins/private-community-for-bp-lite/
as well as s2member and other ‘membership’ plugins which work with buddypress to create tiers to separate content (pages, posts) so that you have control over who sees or reads what.
So please clarify EXACTLY what you are trying to accomplish and hopefully the community here can help you.
-
AuthorSearch Results