Search Results for 'private'
-
AuthorSearch Results
-
December 13, 2012 at 12:36 am #147240
In reply to: Can't Install any version of BP
AutomatedKid
ParticipantHere are the 3 error logs when clicking the meta register link
WordPress database error Multiple primary key defined for query ALTER TABLE wp_PRIVATE_usermeta ADD PRIMARY KEY (umeta_id) made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), do_action(‘template_redirect’), call_user_func_array, bp_template_redirect, do_action(‘bp_template_redirect’), call_user_func_array, bp_screens, do_action(‘bp_screens’), call_user_func_array, bp_forums_directory_forums_setup, do_action(‘bbpress_init’), call_user_func_array, bp_forums_load_bbpress, bp_bb_dbDelta
WordPress database error Multiple primary key defined for query ALTER TABLE wp_PRIVATE_users ADD PRIMARY KEY (ID) made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), do_action(‘template_redirect’), call_user_func_array, bp_template_redirect, do_action(‘bp_template_redirect’), call_user_func_array, bp_screens, do_action(‘bp_screens’), call_user_func_array, bp_forums_directory_forums_setup, do_action(‘bbpress_init’), call_user_func_array, bp_forums_load_bbpress, bp_bb_dbDelta
WordPress database error Duplicate key name ‘user_nicename’ for query ALTER TABLE wp_PRIVATE_users ADD UNIQUE KEY user_nicename (user_nicename) made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), do_action(‘template_redirect’), call_user_func_array, bp_template_redirect, do_action(‘bp_template_redirect’), call_user_func_array, bp_screens, do_action(‘bp_screens’), call_user_func_array, bp_forums_directory_forums_setup, do_action(‘bbpress_init’), call_user_func_array, bp_forums_load_bbpress, bp_bb_dbDelta
thank you.
December 11, 2012 at 8:22 pm #147117voopress
ParticipantRight, so, when I pick the Activity menu item which appears to be public, as soon as I click on it, two options show up, Post in (My profile, or groups) and Post Update.
Er… now it’s working again. What the???
I posted without picking either choice and my post was made public. Before that, not only would it not go public but it was just plain lost. It didn’t show up anywhere.Guess something burped and it’s working now.
December 11, 2012 at 7:28 pm #147101John James Jacoby
KeymasterNot sure what you mean by “public area” — everything is assumed public, unless it’s explicitly private (like private/hidden groups.)
December 11, 2012 at 6:32 pm #147093In reply to: Does Buddy Press work at all ?
gorod
ParticipantI am using Tersus theme from ThemeForest (which is advertised as BuddyPress theme).
My permalinks are set to postname.
BuddyPress is installed , to create forum it’s asking to install bbpress.
So the bbpress (without the BuddyPress) forum works.
But when I go to the BuddyPress newly created pages (groups, forums,members) I get those problems. Can’t create groups, can’t create forum, can’t send private message to memebers. Error message :There was an error saving group details, please try again.
December 10, 2012 at 10:54 pm #147016Clementkjhjkh
ParticipantAnyone ? Please…
December 10, 2012 at 10:30 pm #147013In reply to: Posts with Password privacy
geoutah
ParticipantWhen you create the group, it can be a private group. Try creating a test group that’s private and play with it. Create a test user and try it out.
I would explore plug-ins to see if there may be a fix there for you. I’ve never tried to have this level of specific customization, usually plug-ins are the answer.
Some of this may be theme specific.
December 10, 2012 at 7:40 am #146944In reply to: Only some forums visible
@mercime
ParticipantDepends. You might have set some groups to public and thus have public forums while you set up the others as private groups which then have respective private forums.
December 10, 2012 at 3:34 am #146929In reply to: Private Groups Page Access
@mercime
ParticipantDo post at plugin’s suppport forum https://wordpress.org/support/plugin/buddypress-groups-extras
December 9, 2012 at 8:13 pm #146920Clementkjhjkh
ParticipantDoes someone know where is the problem ?
ThanksDecember 9, 2012 at 6:08 pm #146917In reply to: Private Field
Ben Hansen
ParticipantIf you are proficient at coding you may be able to figure it out, i couldn’t. the feature is going to be built into the next version of buddypress if you can’t wait and manage to figure it out please let me know cause i’d love to be able to do that as well.
https://buddypress.org/support/topic/how-to-add-a-nobody-option-in-the-profile-privacy-options/
December 8, 2012 at 10:13 pm #146887Clementkjhjkh
ParticipantThanks,
Actually i think that your code should work and that my problem may be not where i thought. problem.
When i use
define(‘BP_GROUPS_DEFAULT_EXTENSION’, ‘forum’ );
it works but when i put it in a function like that, nothing happens:
function redirect_to_forum(){
define('BP_GROUPS_DEFAULT_EXTENSION', 'forum' );
}
add_action('wp','redirect_to_forum');
So, i think that’s why nothing happens when i try to add your code.
Do you know what’s wrong with my function ?December 8, 2012 at 7:24 pm #146878jonlachlan
ParticipantJust came across this issue. Updates in Groups that were previously public, now private, are shown to a non-member in All Activities page. However, if they open the group page, they are of course told that it’s private (nothing is shown). Isn’t there a way for the loop to just check the group privacy status for each activity item?
This is in 1.6.1 (as WP plugin)
December 8, 2012 at 5:14 pm #146862In reply to: Private Groups Page Access
ElbowRobo
ParticipantBump?
December 7, 2012 at 4:27 pm #146769modemlooper
ModeratorThis is not tested but you don’t want the define to run if a member is not a member of a private group.
if ( bp_group_is_visible && bp_is_group_member() ) {
define(‘BP_GROUPS_DEFAULT_EXTENSION’, ‘forum’ );
}
December 7, 2012 at 11:05 am #146758Clementkjhjkh
ParticipantSorry, here is what i tried :
function redirect_to_forum() {
global $bp;
if( bp_is_group_members() )
define(‘BP_GROUPS_DEFAULT_EXTENSION’, ‘forum’ );
}
add_action( ‘wp’, ‘redirect_to_forum’ );December 7, 2012 at 10:28 am #146756Clementkjhjkh
ParticipantHi,
I have the same problem, i tried this :but it doesn’t work, am i doing something wrong ?
Besides i got a warning message :Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /homez.38/centrale/www/demo/demo/INELSE/wp-content/plugins/bp-custom.php:10) in /homez.38/centrale/www/demo/demo/INELSE/wp-content/plugins/events-manager/classes/em-notices.php on line 11
If someone has a solution, it would be really great
December 7, 2012 at 5:05 am #146744modemlooper
ModeratorOr, if group is private and user is not member
December 7, 2012 at 4:59 am #146743modemlooper
ModeratorJust wrap that define with code that tests if a user is a member of group.
December 7, 2012 at 3:19 am #146741dennissmolek
ParticipantI am having the exact same problem. I submitted it as a ticket:
https://buddypress.trac.wordpress.org/ticket/4706
What is happening is its trying to redirect to the home tab, then the change default filter moves it to the other tab, which causes the loop.
Until its fixed simply add ‘/home’ to the line mentioned in the ticket.
December 6, 2012 at 11:06 pm #146722In reply to: Mapology – Adding maps for users and groups
jeduhu
ParticipantBoris,
I have a few questions. I really like what you’re offering in Shabushabu and have questions about utility.
1. So this map can be added to each user profile to correlate to their location. Can you set it to private?
2. On your events plugin can you set the event geo tag to correlate with the profile. Meaning if you have a profile search event, to create begin and end point for instant navigation.
3. Is this offered to the US? I’m not sure what the prices are for us here.
Thanks,
JeremiahDecember 6, 2012 at 4:06 am #146628In reply to: My hunting social network
johnjf
ParticipantThanks, I had the pages set on private for the time being.
December 3, 2012 at 9:22 pm #146435In reply to: Forums not working
Kevin.Bowser
Participant@beingblissful I would like to chat with you about your experience with Salutation. I am about to purchase it and institute forums and migrate an existing blog to a new domain that I purchased. I was really drawn to Salutation because of the look of it and the video tutorials make it look so easy. My problem is that I have not been able to get forums to work at all as described in WordPress or BuddyPress documentation. I would like to chat with you if you have time. If you do, please email me your contact info privately and I will reach out to you. My email address is kevin.bowser@live.com.
I tried to send you this as a direct message, but to no avail. Maybe I am just not destined to use BuddyPress???
Thanks,
Kevin
December 1, 2012 at 10:05 pm #146298In reply to: [Resolved] Logged-In User Profile Link URL
ihiustler
Participant@paintermommy did you ever get this to work with the wishlist plugin? Are your forums private and only for paid members?
November 29, 2012 at 2:46 pm #146117Hugo Ashmore
ParticipantFinished almost exactly the same requirement for a private community, certain profile fields consist of data needed to be added by the site rather than individual users, so set specific edit profile fields to super_admin only but allowed the public view, then as admin you just need to navigate to the users account and then use the admin links on adminbar to edit users profile.
Users are not a BP managed item, Users belong to WP thus adding new users does not present the same xprofile fields for editing.
November 29, 2012 at 1:30 am #146071In reply to: Move group forum topic to different group
daneglerum
ParticipantThanks @aronprins
I’ve tried that plugin but did not have any luck.
I’m starting to wonder if group forums were the best architectural decision for my community. I like the ability to segregate conversations by group and to have private groups and forums but perhaps there is too much segregation. The decision for buddypress.org to move away from group based forums factors into my thinking too.
I’ll do some more reading on how sitewide forums can be used. It seems like this implementation of bbpress is a bit more flexible.
-
AuthorSearch Results