Search Results for 'private'
-
AuthorSearch Results
-
July 18, 2010 at 1:25 am #86047
In reply to: How to make a private community?
Pisanojm
ParticipantHello BP gurus,
Just checking to see if any of you have any code examples for my privacy problem above… I would love to get this to work tomorrow before my launch… re: private community & redirect to different page for login (with login widget).July 17, 2010 at 10:38 pm #86045In reply to: Private Intranet
tradiart
MemberThank you!!!
July 17, 2010 at 9:53 pm #86043In reply to: Private Intranet
July 16, 2010 at 11:07 pm #85948In reply to: How to make a private community?
Pisanojm
ParticipantOk, I’m still dorking around with this… the goal is to have my site a register only site. When people go to musicpln.org they will be redirected to the landing page (http://musicpln.org/landing1) which is a BP page with a login widget. I also would like the feeds to not be blocked.
This code goes in the function.php file:
function sh_walled_garden()
{
global $bp;if( bp_is_register_page() || bp_is_activation_page() ||is_feed() || is_page(‘landing1’) )
// Where landing1 is the page slug of where I would like to redirect
return;if( ! is_user_logged_in() )
bp_core_redirect( $bp->root_domain .’/’. BP_REGISTER_SLUG );
// my activity page is the “homepage” and I don’t want to show any BLOG(s)
}add_action( ‘get_header’, ‘sh_walled_garden’ );
I would like this to redirect to the landing1 reference above (which includes the login widget) The url is http://musicpln.org/landing1
I saw that you put this code in a previous reply…
Where can I put this to make it redirect to the LoginPage above? How can I tie this altogether now?
July 16, 2010 at 11:36 am #85887In reply to: Sending Mass PM as admin possible?
askewz
ParticipantI can already email everyone that is a member , What I want to do is send a Private Message to everyone, so an email tells them they have a message , then they need to check their buddypress inbox.
July 15, 2010 at 9:12 am #85715In reply to: followers VS friends
@mercime
Participant@grosbouff There is the BP Followers Plugin by @apeatling for your reference
One difference between Friends and Followers is that Friends is in core while Followers feature needs the plugin to be activated.
https://wordpress.org/extend/plugins/buddypress-followers/
https://wordpress.org/extend/plugins/buddypress-private-messages-for-followers-only/The other difference is Followers is ala Twitter following. The “follower” doesn’t need to be approved by the one he follows. While for “Friends” to connect completely friendship request must be approved by the other party.
July 15, 2010 at 6:05 am #85697In reply to: Forum thread not created?
Rene Simonsen
Participantok i figured it out, but i still think it is strange that the posted topic i create in a “Private Group” dont get displayed. any special reason for that?
July 15, 2010 at 4:28 am #85689ajaxmac
ParticipantActually – I think I might have done the same thing with the wp-cache plugin. turned it on and then turned it off. That must have been what happened.
July 14, 2010 at 12:58 pm #85568rich! @ etiviti
Participantwhen you checked the db – was the hide_sitewide set to 1 on those records?
looking in the BP core code for
groups_edit_group_settingsnothing updates hide_sitewide if changing the status level from private to public.July 14, 2010 at 1:29 am #85505Pisanojm
ParticipantOk… I found the issue it was here:
div.messages-options-nav {
font-size: 11px;
background: #eee;
text-align: right;
margin: 0 -20px;
padding: 5px 15px;I’ve checked the BP download package and it is ok in there, so it must have been something that I accidently did while changing the css. 1.2.5.2.
July 13, 2010 at 2:18 am #85364In reply to: How to make a private community?
holyphoenix
ParticipantThere are tons of different code edits in here. I am wondering which I should use for buddypress with multisite wordpress 3.0 and where to put it. I made my own bp-custom.php file, but it doesn’t seem to work. Is this file suppose to exist already? And if so it didn’t appear on my installation. :p At least not in the path wp-content/.
Thanks for your help.
July 13, 2010 at 2:04 am #85362In reply to: Member pages only
abcde666
ParticipantJuly 13, 2010 at 2:02 am #85360Pisanojm
ParticipantCan anyone confirm this for me as to if it’s specific to my site?
July 12, 2010 at 3:03 pm #85253In reply to: Private Message Notification Ghost…
guigoz
MemberI have the same with 2.9.2/1.4.2.1. Is it fixed with new BP version ?
July 12, 2010 at 8:54 am #85222Anton
ParticipantAnyone fixed this yet?
July 12, 2010 at 3:25 am #85198In reply to: Private message inbox auto-purging or limits
Pisanojm
ParticipantOk, so I dug up a trac ticket on this and it’s be regulated to the PLUGIN category and not actionable -at least for a long time…
https://trac.buddypress.org/ticket/2244Any MYSQL wizards out there willing to look into this plugin for BP?
July 12, 2010 at 3:20 am #85197In reply to: Private message inbox auto-purging or limits
Pisanojm
ParticipantThis would be a highly desirable option from my stand point and I’m sure many others. The ability to auto-purge Private Messages and/or limit the amount would be great.
July 9, 2010 at 2:41 pm #84936In reply to: How to make a private community?
Valentin Kukov
ParticipantPS. This only seemed to work for me using ftp to upload my theme with the above script inserted into the functions.php file already.
NB watch out when you copy the code from this forum as it can alter the script in places
July 9, 2010 at 11:31 am #84922In reply to: How to make a private community?
Valentin Kukov
ParticipantPlease ignore my last post.
@Travel-Junkie It works a treat. Thanks very much. Just added the code below within the php tags in my active theme’s functions.php file (…/wp-content/themes/XXXXXX/functions.php) and that was all I had to do. Very nice indeed. Now the site is only visible to logged in users (except for blog posts which are visible to everyone)
function sh_walled_garden()
{
global $bp;if( bp_is_register_page() || bp_is_activation_page() )
return;if( ! bp_is_blog_page() && ! is_user_logged_in() )
bp_core_redirect( $bp->root_domain .’/’. BP_REGISTER_SLUG );
}
add_action( ‘get_header’, ‘sh_walled_garden’ );July 8, 2010 at 7:55 pm #84819In reply to: How to make a private community?
Valentin Kukov
Participanthi everyone, sorry to be a pain in the a** but I was wondering whether anyone could write a summary post stating the cleanest simplest way to achieve a private network (including where to paste the statements and in which files). Sounds like @Travel-Junkie has the winning ticket but a lot of amendments/improvements have been made. Can anyone help? TX
July 8, 2010 at 6:10 pm #84801In reply to: Where are all my blogs?
kbeatt
ParticipantI do not have any privacy plugins on my site. I changed the privacy setting on a site that is not one of the 39 blogs listed in the directory to “visible to everyone” and it does not get listed in the directory. I also changed a site that was listed in the directory to be private, but it is still listed in the directory.
July 8, 2010 at 5:39 pm #84799In reply to: Where are all my blogs?
Nahum
Participantright have you tried disabling the blog component in the settings and then enabling again. and check the privacy settings per blog, I know sometimes I get blogs assigned private for some reason or another when messing around with upgrades, plugins, and tinkering.
July 8, 2010 at 9:26 am #84735webgyrl
MemberBTW, here are my site specifications.
Specs
1. Which version of WPMU are you running?
I am using regular WP 3.0
2. Did you install WPMU as a directory or subdomain install?
Root directory
3. If a directory install, is it in root or in a subdirectory?
Root
4. Did you upgraded from a previous version of WPMU? If so, from which version?
Was a previous version install via Fantastico on cPanel, upgraded to 3.0 before BuddyPress was installed
5. Was WPMU functioning properly before installing/upgrading BuddyPress?
Not sure
6. Which version of BuddyPress (BP) are you running?
Version 1.2.5.2
7. Did you upgraded from a previous version of BP? If so, from which version?
No
8. Do you have any plugins other than BuddyPress installed and activated?
Yes:
Welcome Pack Version 2.1
Twitter Goodies Version 3.9.0
Tweetstream Version 1.4
oEmbed for BuddyPress Version 0.52
Invite Anyone Version 0.6.4
Import from Ning Version 1.1
Facestream Version 1.1
Contact Form 7 Version 2.2.1
BuddyPress Usernames Only Version 0.58
BuddyPress Profile Privacy Version 0.2
BuddyPress Private Messages for Followers Only Version 1.0
BuddyPress Like Version 0.0.7
BuddyPress Group Tags Version 1.2.2
BuddyPress Group Email Subscription Version 2.5
BuddyPress Forum Topic Mover Version 1.0.0
BuddyPress Follow Version 1.0
BuddyPress Album+ Version 0.1.7
BP Profile Search Version 1.0
BP Group Management Version 0.4
BP-NotificationWidget Version 1.4
9. Are you using the standard BuddyPress themes or customized themes?
Standard BP Theme BuddyPress Default 1.2.5.2
10. Have you modified the core files in any way?
No
11. Do you have any custom functions in bp-custom.php?
I do not think so.
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
I ran the bbPress installer that came with BuddyPress
13. Please provide a list of any errors in your server’s log files.
DELETED logs….
I moved files in site to root…..
Hosting company:
Total Choice HostingJuly 8, 2010 at 9:24 am #84734In reply to: Cannot post new topic on forum
webgyrl
MemberI am having this exact same problem on a brand new WP/BP site.
Specs
1. Which version of WPMU are you running?
I am using regular WP 3.0
2. Did you install WPMU as a directory or subdomain install?
Root directory
3. If a directory install, is it in root or in a subdirectory?
Root
4. Did you upgraded from a previous version of WPMU? If so, from which version?
Was a previous version install via Fantastico on cPanel, upgraded to 3.0 before BuddyPress was installed
5. Was WPMU functioning properly before installing/upgrading BuddyPress?
Not sure
6. Which version of BuddyPress (BP) are you running?
Version 1.2.5.2
7. Did you upgraded from a previous version of BP? If so, from which version?
No
8. Do you have any plugins other than BuddyPress installed and activated?
Yes:
Welcome Pack Version 2.1
Twitter Goodies Version 3.9.0
Tweetstream Version 1.4
oEmbed for BuddyPress Version 0.52
Invite Anyone Version 0.6.4
Import from Ning Version 1.1
Facestream Version 1.1
Contact Form 7 Version 2.2.1
BuddyPress Usernames Only Version 0.58
BuddyPress Profile Privacy Version 0.2
BuddyPress Private Messages for Followers Only Version 1.0
BuddyPress Like Version 0.0.7
BuddyPress Group Tags Version 1.2.2
BuddyPress Group Email Subscription Version 2.5
BuddyPress Forum Topic Mover Version 1.0.0
BuddyPress Follow Version 1.0
BuddyPress Album+ Version 0.1.7
BP Profile Search Version 1.0
BP Group Management Version 0.4
BP-NotificationWidget Version 1.4
9. Are you using the standard BuddyPress themes or customized themes?
Standard BP Theme BuddyPress Default 1.2.5.2
10. Have you modified the core files in any way?
No
11. Do you have any custom functions in bp-custom.php?
I do not think so.
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
I ran the bbPress installer that came with BuddyPress
13. Please provide a list of any errors in your server’s log files.
[Thu Jul 08 01:43:12 2010] [error] [client 99.232.211.136] PHP Warning: Cannot modify header information – headers already sent by (output started at /home/wwwnatf/public_html/site/wp-admin/includes/misc.php:133) in /home/wwwnatf/public_html/site/wp-includes/pluggable.php on line 890, referer: http://natfriends.com/site/wp-admin/options-general.php
[Thu Jul 08 01:43:12 2010] [error] [client 99.232.211.136] PHP Warning: is_writable() [function.is-writable]: open_basedir restriction in effect. File(/) is not within the allowed path(s): (/home/wwwnatf:/usr/lib/php:/usr/local/lib/php:/tmp) in /home/wwwnatf/public_html/site/wp-admin/includes/misc.php on line 133, referer: http://natfriends.com/site/wp-admin/options-general.php
[Wed Jul 07 23:53:55 2010] [error] [client 99.232.211.136] PHP Warning: Invalid argument supplied for foreach() in /home/wwwnatf/public_html/site/wp-content/plugins/wordpress-shout-box-chat/chat.php on line 38, referer: http://natfriends.com/site/
[Wed Jul 07 23:53:55 2010] [error] [client 99.232.211.136] PHP Warning: file_put_contents(history/20100707) [function.file-put-contents]: failed to open stream: Permission denied in /home/wwwnatf/public_html/site/wp-content/plugins/wordpress-shout-box-chat/chat.php on line 23, referer: http://natfriends.com/site/
[Wed Jul 07 23:53:52 2010] [error] [client 99.232.211.136] PHP Warning: Invalid argument supplied for foreach() in /home/wwwnatf/public_html/site/wp-content/plugins/wordpress-shout-box-chat/chat.php on line 38, referer: http://natfriends.com/site/
[Wed Jul 07 23:53:52 2010] [error] [client 99.232.211.136] PHP Warning: file_put_contents(history/20100707) [function.file-put-contents]: failed to open stream: Permission denied in /home/wwwnatf/public_html/site/wp-content/plugins/wordpress-shout-box-chat/chat.php on line 23, referer: http://natfriends.com/site/
[Wed Jul 07 23:47:55 2010] [error] [client 99.232.211.136] PHP Warning: chmod() [function.chmod]: Operation not permitted in /home/wwwnatf/public_html/site/wp-content/plugins/phpfreechat/src/pfctools.php on line 180, referer: http://natfriends.com/site/
[Wed Jul 07 23:47:55 2010] [error] [client 99.232.211.136] PHP Warning: copy(/home/wwwnatf/public_html/site/wp-content/plugins/phpfreechat/src/../data/public/themes/zilveer/smileys/emoticon_unhappy.png) [function.copy]: failed to open stream: Permission denied in /home/wwwnatf/public_html/site/wp-content/plugins/phpfreechat/src/pfctools.php on line 179, referer: http://natfriends.com/site/
[Wed Jul 07 23:47:55 2010] [error] [client 99.232.211.136] PHP Warning: chmod() [function.chmod]: Operation not permitted in /home/wwwnatf/public_html/site/wp-content/plugins/phpfreechat/src/pfctools.php on line 180, referer: http://natfriends.com/site/
[Wed Jul 07 23:47:55 2010] [error] [client 99.232.211.136] PHP Warning: copy(/home/wwwnatf/public_html/site/wp-content/plugins/phpfreechat/src/../data/public/themes/zilveer/smileys/eusa_whistle.gif) [function.copy]: failed to open stream: Permission denied in /home/wwwnatf/public_html/site/wp-content/plugins/phpfreechat/src/pfctools.php on line 179, referer: http://natfriends.com/site/
I moved files in site to root…..
Hosting company:
Total Choice HostingJuly 7, 2010 at 11:04 pm #84680rich! @ etiviti
Participantsomething like: (just taken from bp-core.php line 397)
is_null( $bp->displayed_user->id ) && $bp->current_component == BP_MEMBERS_SLUG && $bp->is_directory
-
AuthorSearch Results