Search Results for 'private'
-
AuthorSearch Results
-
April 17, 2011 at 3:21 am #110437
In reply to: Fatal Error on activating BuddyPress Plugin
@mercime
ParticipantWhat BP version are you on? That issue has been fixed https://trac.buddypress.org/ticket/2759 to address deprecated notice if you’re on PHP 5.3+
== It shouldn’t need 33MB of RAM just to activate the plugin. ==
It depends on server configurations ultimately. I set up a BP install for a friend on a shared hosting plan with 32MB and it’s running well with a private community of 250+ members. Resolve the deprecated notices issues first and see if you still need to increase memory limit.April 16, 2011 at 7:31 am #110385In reply to: Installing buddypress in subsite in WP multisite
@mercime
ParticipantFirst thing’s first, if you want to have user-blog-URL’s as http://myname.mysite.com/ then you have to install BuddyPress in domain root http://mysite.com/ Otherwise, if you install BP in secondary site with a subdomain configuration, e.g. http://buddypress.mysite.com/, the glitch is that the user blogs created from the secondary site will turn out like http://myname.buddypress.mysite.com/
Reported here: https://trac.buddypress.org/ticket/1796== 4. but when i do that , the links etc starts showing in the main site ==
Unless you put in code or widget for sitewide recent posts or for list of all blogs, then those links won’t show up in the home page of your main site.== i only wants users to see once the login to community ==
Read through to the end of this related topic with solutions for the https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-make-a-private-community?topic_page=1&num=15April 15, 2011 at 6:45 pm #110357In reply to: Send Private Static Message
r-a-y
KeymasterYou should also add some type of nonce verification:
https://codex.wordpress.org/Function_Reference/wp_create_nonceReason is in your function anyone can send a Bzzt even if you’re not logged in if they know the correct URL schema.
April 15, 2011 at 5:05 pm #110351In reply to: Send Private Static Message
shanebp
ModeratorThanks for the pointer. Got the listener working.
Here it is, for other noobs…`
function bp_send_private_bzzt() {
global $bp;if ( $bp->profile->slug != $bp->current_component || ‘bzzt’ != $bp->current_action || ‘send’ != $bp->action_variables[0] )
return false;$sender_id = $bp->action_variables[1];
$recip_id = $bp->action_variables[2];
$recip_name = htmlspecialchars(urldecode($bp->action_variables[3]));
$sender_name = $bp->loggedin_user->fullname;$alert_message = “You just sent a BZZT! to ” . $recip_name;
bp_core_add_message( __( $alert_message, ‘buddypress’ ) );$subject = $sender_name . ” just sent you a BZZT!”;
messages_new_message( array(‘sender_id’ => $sender_id, ‘subject’ => $subject, ‘content’ => “BZZT!”, ‘recipients’ => $recip_id ) );bp_core_redirect( wp_get_referer() );
}
add_action( ‘wp’, ‘bp_send_private_bzzt’, 3 );function bp_send_private_bzzt_link() {
echo bp_get_send_private_bzzt_link();
}
function bp_get_send_private_bzzt_link() {
global $bp;if ( bp_is_my_profile() || !is_user_logged_in() )
return false;$sender_id = $bp->loggedin_user->id;
$recip_id = $bp->displayed_user->id;
$recip_name = $bp->displayed_user->fullname;return apply_filters( ‘bp_get_send_private_bzzt_link’, wp_nonce_url( $bp->displayed_user->domain . $bp->profile->slug . ‘/bzzt/send/’ . $sender_id . ‘/’ . $recip_id . ‘/’ . $recip_name . ‘/’) );
}
`April 15, 2011 at 12:12 am #110281In reply to: Send Private Static Message
r-a-y
KeymasterRight now, your function is coded so it runs whenever the function is called.
You need to create an action listening function at a predetermined slug so your function should run; or if you’re feeling really up to it, use ajax to send the request.Check out any action function in BP for hints.
Here’s such an example to get you started:
https://trac.buddypress.org/browser/tags/1.2.8/bp-xprofile.php#L398April 14, 2011 at 10:15 pm #110274gregfielding
Participant@r-a-y put together a solution that worked for caching and private messaging https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/persistent-caching-and-private-messaging
Maybe this is in a similar family…
Thanks for your input Paul.
April 14, 2011 at 2:50 am #110193In reply to: FATAL ERROR!!
Anthony1978
MemberThanks for the reply, all I had installed prior to the template pack was BP Private COmmunity so I am thinking that I do not have the correct plugin installed. What is the exact plugin name that I need to install so that the BP Template Pack will work? Thx 4 the reply by the way.
April 9, 2011 at 9:29 pm #109886In reply to: Need beginner help ASAP, please!
edinchez
Participantyeah sure, doesn’t matter if it’s private or public. can you just show me how to fix the sidebar separator? the header thingy isn’t so important.
April 9, 2011 at 7:43 pm #109884In reply to: Need beginner help ASAP, please!
Hugo Ashmore
ParticipantI’m afraid that you do need the services of a coder really, you can post in the jobs section for some help or as I said earlier try approaching the themes author which really you should try first as they wrote the theme know their code and how to adapt / modify it.
I’m afraid I no longer help privately on small jobs as they cost too much time, happy to help on support in public posts where I can though.
April 9, 2011 at 7:36 pm #109882In reply to: Need beginner help ASAP, please!
edinchez
Participantthanks but, tbh, i didn’t understand a thing you said there
can you make it a bit easier for me? or can you help me privately maybe? thankss!April 8, 2011 at 10:28 am #109811Bowe
ParticipantHi not-so-poor Programmer,
That stuff made my head spin. Exactly the reason why I became a poor designer. I kind of misunderstood the functionality as it seems, and so it is more to prevent dupes in the stream, and for hidden and private groups.
I think the functionality described by me will be extremely useful for bigger communities. I’d rather not start blocking certain types of Activity Stream items (https://wordpress.org/extend/plugins/buddypress-block-activity-stream-types/) and just show certain items to followers/friends only.
So if you could do something magical to make that happen.. I think a lot of bigger BP communities will be pleased. Or just turn it into a plugin! (HINT HINT LOUD NOISES)
April 7, 2011 at 7:34 pm #109776Hugo Ashmore
ParticipantThis was an issue but it was attended to with a workaround by Boone with a little help from me ( well I discovered it
) it predates the favorite issue and shouldn’t be apparent but it’s a while since I looked.April 7, 2011 at 4:43 pm #109763In reply to: Arrowchat – Facebook Style Chat Bar
Pisanojm
ParticipantI am using cometchat quite successfully and it works great with BP. It is a single-user sign in and pulls avatars and passwords from your wordpress/bp site. You can choose to have friend-to-friend chats or make public/ private rooms… You can also choose not to have it appear for non-logged in users. You can also have other modules like Wibya chat… I have had not one issue with it on my site. It is a little heavy for shared-hosting… if you have a VPS 512 Meg plus, you should be fine. It’s well worth the $49 U.S. dollars. They are working on version 3.0 and it should be out within the next 2 months, so it should be getting better (free upgrades for those of you within the year of your purchase).
April 7, 2011 at 4:38 pm #109760Paul Wong-Gibbs
KeymasterNot aware of any current issues regarding this. We have fixed a situation where when a private group’s member could favourite an item, which then any other site member could view that single item by going to the group member’s profile and viewin their favourites. This is going to become BuddyPress 1.2.9 this weekend.
If you think you’ve found an issue, please consider any conflicts with other plugins (or by using any theme other than BP-Default) and give clear instructions how to recreate.
April 7, 2011 at 2:43 pm #109742Miko
ParticipantI am having the same issue… I’m not a super techie so can someone clarify whether there is some way around this now? I am using 1.2.8 and WP 3.1
Members are able to comment on so-called private forums. They appear in the normal flow of posts, but a further glitch: when you click their name you don’t go to their profile, you get redirected to the site homepage.
April 7, 2011 at 2:40 pm #109741In reply to: Setting redirect page for non-logged in users
Miko
ParticipantIn case anyone else has the same issue, I switched to BuddyPress Private Community pluign and that seems to sort everything out fine.
April 6, 2011 at 7:29 pm #109697In reply to: Buddypress – Personal Private Diary Options?
@mercime
Participant@philsquires wait for 24 hours before bumping your topic.
You would need to create a plugin for that private diary/blog and look at how it’s done in BuddyPress Docs plugin.
April 6, 2011 at 7:03 pm #109696In reply to: Buddypress – Personal Private Diary Options?
philsquires
MemberBump?
April 5, 2011 at 7:50 am #109590goldbrick
Member==The weird thing is that links to the BP components pages like forums and groups are working while your regular WP Pages are not working.==
==Wait, did you make those Pages > “Private” in Page Write/Edit Panel? That’s one scenario which could cause that behavior.==
Just checked this all pages are public, very strange don’t get this at all?
April 5, 2011 at 1:36 am #109572@mercime
Participant== 404 errors on those pages ==
The weird thing is that links to the BP components pages like forums and groups are working while your regular WP Pages are not working.
Wait, did you make those Pages > “Private” in Page Write/Edit Panel? That’s one scenario which could cause that behavior.
April 4, 2011 at 7:30 pm #109542@mercime
Participant@naijaping can you share what caused the overflow and how you resolved this?
April 4, 2011 at 6:35 pm #109541Prince Abiola Ogundipe
Participantcan admin close this , it has been sorted
April 2, 2011 at 7:28 pm #109397In reply to: pages private to groups
@mercime
ParticipantI know that the premium Gravity Forms plugin can be integrated with BuddyPress in general, but to attach that form specifically to certain group/s would require extra coding to achieve this on your part.
April 2, 2011 at 7:20 pm #109395In reply to: pages private to groups
scrltotara
MemberRight, but I want to have a form for just that group as well that is created with a form plugin. Is there a way to limit that?
April 2, 2011 at 7:19 pm #109394In reply to: pages private to groups
@mercime
Participanthttps://buddypress.org/community/groups/buddypress-docs/
If you create a hidden group, only group admin and invited members of the group can access these pages. -
AuthorSearch Results