Search Results for 'wp user activate'
-
AuthorSearch Results
-
June 18, 2011 at 6:25 pm #114779
In reply to: Activity Post/Reply To Not Working
d71
MemberOk, so in the working default BuddyPress theme the Ajax handler works great:
bp_dtheme_post_update traceback:
#0 bp_dtheme_post_update() called at [:]
#1 call_user_func_array() called at
[wp-includes/plugin.php:395]#2 do_action() called at
[wp-content/plugins/buddypress/bp-core.php:2026]#3 bp_core_add_ajax_hook() called at [:]
#4 call_user_func_array() called at
[wp-includes/plugin.php:395]#5 do_action() called at
[wp-settings.php:298]#6 require_once(/home2/capacoac/public_html/artsbeta/wp-settings.php) called at
[wp-config.php:91]#7 require_once(/home2/capacoac/public_html/artsbeta/wp-config.php) called at
[wp-load.php:30]When doing a normal status update it seems to flow normally:
top of bp_dtheme_post_update in bp-theme-default…
. content=james
. object=
. calling bp_activity_post_update (no object)…
. calling user func tag=wp_default_stylesMy status update was “james”. So all working well for the default BuddyPress theme.
Now with BuddyBase activated none of that entire call chain happens and neither does it happen from the default buddy base theme. its like ajax.php is no longer being loaded.
To verify I put an error_log call at the top of the BuddyBase copy of _inc/ajax.php, just to indicate that _its_ version of ajax.php was being loaded…and its not. For some reason the BuddyBase theme is not having its version of ajax.php loaded.
I’m not really sure hwo to verify how the theme tells WordPress/BuddyPress to load that file, but I guess I have another lead to track down….
June 17, 2011 at 3:20 am #114671In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
David
ParticipantHere’s how to get around activation. I was having the same problem on my test server, since it couldn’t send out activation emails. If you need activation emails enabled, then this workaround will not work for you.
For users that have already been created and cannot login, you can go into the wp_users table in the database and change their ‘user_status’ from ‘2’ to ‘0’ (if you have database access). ‘user_status’ is not used in WordPress — it’s a dead field — but Buddypress uses it to redirect to the homepage if a user has not been activated (aka user_status=2).
To avoid the problem for future user registrations, you can change a file to avoid activation (if you have FTP access). In the buddypress plugin directory, find bp-core/bp-core-signup.php. Find the line that says:
`$wpdb->query( $wpdb->prepare( “UPDATE $wpdb->users SET user_status = 2 WHERE ID = %d”, $user_id ) );`
In my installation (1.2.
it is on line 357. Change the 2 on that line to a 0. So it should look like this:
`$wpdb->query( $wpdb->prepare( “UPDATE $wpdb->users SET user_status = 0 WHERE ID = %d”, $user_id ) );`Now when a new user is created, they will automatically be able to login without their email needing to be confirmed.
June 14, 2011 at 11:14 pm #114527In reply to: Improper group members displayed?
Prince Abiola Ogundipe
ParticipantHi, am very sure that the rest members you cant see are spam or they did not activate their account via the activation key sent to them. it has happened to me before. firstly go to wp admin, and go to users, then check how many users you can see. if it is 523.
regards
June 14, 2011 at 4:42 pm #114503@mercime
Participant== Is there really no support for this issue? ==
Know that except for the Lead Dev, support is given by volunteers. Feel free to bump if your question has not been answered after 24 hours. Stay calm, cool and collected.
== A site I’m working on ==
Is the site WP or a another kind which you want to integrate with WP/BP?
== BuddyPress to feature the activity and work of its users. Is BuddyPress capable of doing this? ==
If site is WP, sure it can. Know that the activity will only be recorded starting from the time you activate BuddyPress. I think there’s a plugin that can get users’ posts from existing multisite to be listed, just can’t recall which one and if it’s been updated.
== How do users use the BuddyPress Like plugin to ’like’ the work other users do? ==
Members click on Like button. Or did you mean something else? You would have to be more specific.
June 12, 2011 at 9:03 pm #114409Boone Gorges
KeymasterIt’s not that the activation key is being “lost”. It’s that the user has already been activated, and the error being thrown by WP/BP (“provide a valid key”) is extremely unhelpful. It will be improved in BP 1.3.
Just instruct your users to log in with their username and password. They should find that their accounts are fully functional.
BTW, another plugin to help with activation is https://wordpress.org/extend/plugins/unconfirmed
June 12, 2011 at 8:21 pm #114401pcwriter
ParticipantThere’s also this plugin that’s supposed to work with BP: https://wordpress.org/extend/plugins/wp-activate-users/
And the code snippet in this thread works very well (I’ve used it): https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/get-non-activated-users/June 7, 2011 at 5:54 pm #114093In reply to: BuddyPress Template Pack 1.1 upgrade
Boone Gorges
KeymasterIf you have never activated Network Mode, then you don’t have it activated. Don’t worry about it.
Open up wp-content/plugins/bp-template-pack/bp-template.php. Around line 48 you’ll see a line that looks like this:
`add_theme_page( __( ‘BP Compatibility’, ‘bp-template-pack’ ), __( ‘BP Compatibility’, ‘bp-template-pack’ ), current_user_can(‘switch_themes’ ), ‘bp-tpack-options’, ‘bp_tpack_theme_menu’ );`
Replace it with
`add_theme_page( __( ‘BP Compatibility’, ‘bp-template-pack’ ), __( ‘BP Compatibility’, ‘bp-template-pack’ ), ‘switch_themes’, ‘bp-tpack-options’, ‘bp_tpack_theme_menu’ );`This is a bug that I’ll fix in the next version, but I’m not certain that it’s the cause of your error. Let me know.
June 3, 2011 at 3:11 pm #113771@mikey3d
Participant“Is that a general recommendation?
”
– No! However I have only been using your two codes that works but after awhile when I found the bugs it’s causing of your codes.1. Duplicate Content: Slash and No Slash at the End of URL
2. The page isn’t redirecting properly“I did say it was test code. Looks like you have whitespace issues in your /registration/activate.php. Delete any trailing whitespace from the beginning of that file.”I did put back the
function bp_core_redirect_canonicalin functions.php and deleted redirect trailing slash in .htaccess before process your above posted. It is the same problem I had it before except no warning error show up, only missed a key link in the domain link.I haven’t touch activate.php in bp-default therefore when I looked for trailing space, it looks like this:
`
`If that is what you were talking about I deleted the whole line 1 and I tested it again and result I get when click the activation link in email:
http://www.domain.com/blog/activate/
`Activate your Account
Please provide a valid activation key.
Activation Key:`There is no key link in the domain. e.g.
http://www.domain.com/blog/activate?key=afd7528c3b5664d429f94a2ed59a4c32
The line 1 in activate.php said
“This template is only used on multisite installations.”I have single WordPress. Does it matter? All those error the user still able get in after clicked the activation link in the email. Huh?Is there a fix? What is the solution for Single WP after user completed sign-up?
“Your htaccess rewrite rules look like it will interfere with querystring variables.
eg. example.com/my-page/?variable=my-test”Ha, thanks for noticed.
June 2, 2011 at 9:20 pm #113722lselwd
MemberWhen a new user go to Register… … …. blog built check box, blog name…
Neither seen custom fields created after installation of bp…
I went install wp plug in “BP Groupblog”, installed success, but when went activated appeared:
Plugin could not be activated because it triggered a fatal error.
Warning: require(/home/content/a/b/c/abc123uyc5/html/PI/wp-content/plugins/bp-groupblog/bp-groupblog-cssjs.php) [function.require]: failed to open stream: No such file or directory in /home/content/a/b/c/abc123uyc5/html/PI/wp-content/plugins/buddypress-group-blog/bp-groupblog.php on line 26
Fatal error: require() [function.require]: Failed opening required ‘/home/content/a/b/c/abc123uyc5/html/PI/wp-content/plugins/bp-groupblog/bp-groupblog-cssjs.php’ (include_path=’.:/usr/local/php5/lib/php’) in /home/content/a/b/c/abc123uyc5/html/PI/wp-content/plugins/buddypress-group-blog/bp-groupblog.php on line 26
May 26, 2011 at 11:16 am #113105In reply to: Not all membrs are displayed on members page?
Prince Abiola Ogundipe
Participantok try this :
use this plugin to manually active users that are not activated yet : https://wordpress.org/extend/plugins/wp-activate-users/
and use the below code in your functions.php .to disable email activation.
function disable_validation( $user_id ) {
global $wpdb;
$wpdb->query( $wpdb->prepare( “UPDATE $wpdb->users SET user_status = 0 WHERE ID = %d”, $user_id ) );
}
add_action( ‘bp_core_signup_user’, ‘disable_validation’ );
function fix_signup_form_validation_text() {
return >false;
}
add_filter( ‘bp_registration_needs_activation’, ‘fix_signup_form_validation_text’ );May 26, 2011 at 10:16 am #113102In reply to: wp-activate user Error
Paul Wong-Gibbs
KeymasterIt’s an error in that plugin, not BuddyPress
May 8, 2011 at 5:59 am #111850@mercime
ParticipantNo need for sarcasm, let not your pink hair turn red

Per my last check in a test install of multi-author blog, existing users – from contributors to Admins – are automatically listed as Members. Of course the dropdown for “Last Active” might show only the Admin until your users sign up again since sitewide activity will only be recroded by BuddyPress after it is activated. You can see all your existing members in dropdown selection “Newest Registered”
Edit – there’s also this plugin but haven’t tested it for latest BP/WP versions http://teleogistic.net/code/buddypress/bp-import-blog-activity/
May 8, 2011 at 2:12 am #111837@mercime
ParticipantAdd this to your wp-config.php file
define(‘WP_DEFAULT_THEME’, ‘theme-folder-name’);
from this tutorialAs for changing themes, as long as you activate only your preferred default theme sitewide in Network Admin, the only change they can make is to twentyten which needs to be there just in case.
April 23, 2011 at 3:39 pm #110808In reply to: URGENT – How To Set Default Values?
JamieWade
MemberThis is my new activity-loop.php file. This does not break the sub navs like I posted 5 minutes ago:
`
<?php
if ( bp_has_activities( bp_ajax_querystring( ‘activity’ )) ) ?>`
And here is my bp-custom.php file:
`define( ‘BP_ACTIVATION_SLUG’, ‘activate’ );
define( ‘BP_ACTIVITY_SLUG’, ‘activity’ );
define( ‘BP_BLOGS_SLUG’, ‘blogs’ );
define( ‘BP_FORUMS_SLUG’, ‘forums’ );
define( ‘BP_FRIENDS_SLUG’, ‘friends’ );
define( ‘BP_GROUPS_SLUG’, ‘groups’ );
define( ‘BP_MEMBERS_SLUG’, ‘members’ );
define( ‘BP_MESSAGES_SLUG’, ‘messages’ );
define( ‘BP_REGISTER_SLUG’, ‘register’ );
define( ‘BP_SEARCH_SLUG’, ‘search’ );
define( ‘BP_SETTINGS_SLUG’, ‘settings’ );
define( ‘BP_XPROFILE_SLUG’, ‘profile’ );/** wp-content/plugins/bp-custom.php **/
function my_change_activity_default_subnav() {
global $bp;
if (bp_is_my_profile()) {
bp_core_new_nav_default(array( ‘parent_slug’ => $bp->activity->slug, ‘screen_function’ => ‘bp_activity_screen_friends’, ‘subnav_slug’ => $bp->friends->slug));
}
}
add_action( ‘bp_setup_nav’, ‘my_change_activity_default_subnav’ );function my_change_activity_subnav_sequence() {
global $bp;
if (bp_is_my_profile()) {
// flip just-me and friends positions
$bp->bp_options_nav = ’20’;
$bp->bp_options_nav = ’10’;
}
}function bbg_my_friends_activity_default( $qs ) {
if ( is_user_logged_in() && empty( $qs ) && empty( $_POST ) ) {
$qs = ‘scope=friends’;
}return $qs;
}add_filter( ‘bp_ajax_querystring’, ‘bbg_my_friends_activity_default’, 999 );
add_action( ‘bp_activity_setup_nav’, ‘my_change_activity_subnav_sequence’ );`
The site is still functional when I have made the changes you suggested, however when I log in and click on the Activity tab, the Friends (x) box is selected, but the activity shown is from the whole site.
April 19, 2011 at 5:16 am #110540Webweaver21
MemberOkay, I seem to have figured it out. What happened is that when I activated multisite, I “network activated” all the plugins. Since this is the first time I’ve worked with multisite, I didn’t realize that this might mess up some of my plugins.
I just got done reinstalling from a backup and then activating multisite again…this time with ONLY BP “network activated”. Looks like everything is working great. Thanks again for your help. It helped me troubleshoot the possible source of the problem.
April 19, 2011 at 3:47 am #110538Webweaver21
MemberThanks for your help. I did indeed have the setting “Hide admin bar for logged out users?:” set to YES. I switched it to NO and now the menu bar appears whether logged in or logged out.
The only problem is that new users still only see the “Register” and “Log In” menu items, even when they are logged in. This is puzzling because I can access the pages directly as a new user if I type in the URL.
The test user I’m working with is visible under the Users listing of my BP root blog so it doesn’t seem like that would be the problem. I even gave the test user Admin priviledges to make sure there were no access level issues. The only difference is that the test user was signed up after I activated multiuser mode.
The way that WP eMember handles membership is directly linked to the WP user database. The only thing that WP eMember does is allow a new user to be created and grants them appropriate priviledges dependent on their membership level. It does seem like there could be something happening with the sign-up
When I activated WP multiuser it transferred all my plugins to the network admin panel instead of the individual site. WP eMember is now a network-wide plugin, along with BP. Since WP eMember creates a WP user account, I’m guessing it’s now creating user accounts outside of the main site and thus the main site doesn’t recognize the user? Perhaps I should move a bunch of plugins back to the main site instead of the whole network? I don’t really need any plugins for the user blogs so they could all be on the main site and things might work better. I’m not quite sure how I’d manage moving the plugins though.
April 19, 2011 at 1:59 am #110535Webweaver21
MemberOkay, I’ll try to be clearer…
I’m using a theme I converted to be compatible with BuddyPress. I know it is now compatible because when I first installed BuddyPress it worked perfectly. All the BuddyPress menus appeared at the top and I tested every page. I’m using WP eMember membership plugin and it worked perfectly with BuddyPress. When logged in as either an Admin or regular user I could see the top BuddyPress menu and everything worked perfectly.
Then I activated WP multiuser mode…
After activating WP multiuser mode, I can only see the BuddyPress menu on the front end by using my Admin account. If I try creating any new accounts through either WP or eMember, they are unable to view the BuddyPress menu. Originally, I thought these new members were unable to view any BuddyPress pages, but now it appears that if I manually try to access different pages, the new members ARE able to see BuddyPress pages. So IT IS ONLY THE BUDDYPRESS MENU THAT DOESN’T WORK FOR NEW USERS. However, the BuddyPress menu DOES work for my Admin account.
Obviously something happened when I activated multiuser mode and I have no idea what it could be. If anyone wants to register for a free account to check it out feel free: http://magneticquest.com/registration/
All I need to do now is figure out how to get the BuddyPress menu to appear for new users.
April 18, 2011 at 8:24 pm #110522In reply to: Members show up twice in group
ultimateuser
Participant@DJPaul These are the plugins im using:
Add Logo to Admin
Akismet
BackupWordpress
BPAlbum
BP-Youtube Feed
BP Profile Search
BP Redirect to Profile for Buddypress
BP Xtra Signup
BuddyPress Announce Group
Buddypress Auto Group Join
BuddyPress Block Activity Stream Types
Buddypress Community Stats
Buddypress Mandatory Groups
BuddyPress Mobile
Buddypress Moderation
BuddyPress Registration Groups
BuddyPress Restrict Group Creation
BuddyPress RSS Character Fixer
Buddypress Topic Mover
Capability Manager
Custom Profile Filters for BuddyPress
Email Login
Erocks Dashboard Lockdown
Fast Secure Contact Form
Forum Attachments for BuddyPress
Mail From
PHP Exec
Simple Page Ordering
Twitter Goodies
Users to CSV
W3 Total Cache
Welcome Pack
WP-Invites
WP-TwitterBadge
WP Activate UsersApril 17, 2011 at 2:43 am #110436In reply to: Fatal Error on activating BuddyPress Plugin
hran
MemberI am having the same problem, but are you sure this isn’t a bug in the plugin? It shouldn’t need 33MB of RAM just to activate the plugin. I got the same error trying to activate Buddypress 1.2.8 on a fresh install of WordPress 3.1.1 on a high-quality host. There are a huge number of warnings that come before the memory error. Here’s the full output with debug on (I cut out another ~50 warnings on call-time pass-by-reference).
`Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of apply_filters(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-core.php on line 565
Warning: Call-time pass-by-reference has been deprecated in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-core/bp-core-classes.php on line 228
[many more errors on call-time pass-by-reference…]
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of apply_filters(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-friends.php on line 433
Notice: Undefined offset: 0 in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-core/bp-core-catchuri.php on line 85
Notice: is_page was called incorrectly. Conditional query tags do not work before the query is run. Before then, they always return false. (This message was added in version 3.1.) in /sites/www.mysite.org/web/content/wp-includes/functions.php on line 3422
Notice: Undefined offset: 2 in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-core/bp-core-catchuri.php on line 158
Notice: Undefined property: stdClass::$loggedin_user in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-forums.php on line 530
Notice: Trying to get property of non-object in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-forums.php on line 530
Notice: Undefined property: stdClass::$displayed_user in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-core.php on line 1070
Notice: Trying to get property of non-object in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-core.php on line 1070
Notice: Undefined index: user-avatar-default in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-core.php on line 160
Notice: Undefined property: stdClass::$profile in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-classes.php on line 816
Notice: Undefined index: bp-xprofile-base-group-name in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-xprofile.php on line 101
Notice: Undefined index: bp-xprofile-fullname-field-name in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-xprofile.php on line 102
WordPress database error: [Table ‘z_mysitewp.wp_bp_xprofile_data’ doesn’t exist]
SELECT value FROM wp_bp_xprofile_data WHERE field_id = 1 AND user_id = 1WordPress database error: [Table ‘z_mysitewp.wp_bp_xprofile_fields’ doesn’t exist]
SELECT * FROM wp_bp_xprofile_fields WHERE id = 1WordPress database error: [Table ‘z_mysitewp.wp_bp_xprofile_fields’ doesn’t exist]
SELECT id FROM wp_bp_xprofile_fields WHERE id = 1Notice: Undefined index: bb-config-location in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-forums.php on line 23
Notice: Undefined index: bp-xprofile-base-group-name in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-xprofile.php on line 101
Notice: Constant BP_XPROFILE_BASE_GROUP_NAME already defined in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-xprofile.php on line 101
Notice: Undefined index: bp-xprofile-fullname-field-name in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-xprofile.php on line 102
Notice: Constant BP_XPROFILE_FULLNAME_FIELD_NAME already defined in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-xprofile.php on line 102
Notice: Undefined index: fileupload_maxk in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-core/bp-core-avatars.php on line 35
WordPress database error: [Table ‘z_mysitewp.wp_bp_groups_members’ doesn’t exist]
SELECT COUNT(DISTINCT m.group_id) FROM wp_bp_groups_members m, wp_bp_groups g WHERE m.group_id = g.id AND m.user_id = 1 AND m.is_confirmed = 1 AND m.is_banned = 0Notice: Undefined property: stdClass::$current_group in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-groups.php on line 223
Notice: Trying to get property of non-object in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-groups.php on line 223
WordPress database error: [Table ‘z_mysitewp.wp_bp_messages_recipients’ doesn’t exist]
SELECT unread_count FROM wp_bp_messages_recipients WHERE user_id = 1 AND is_deleted = 0 AND sender_only = 0Notice: Undefined variable: count_indicator in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-messages.php on line 115
Notice: Undefined index: action in /sites/www.mysite.org/web/content/wp-content/plugins/buddypress/bp-core/bp-core-signup.php on line 571
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /sites/www.mysite.org/web/content/wp-admin/includes/media.php on line 1963`
April 17, 2011 at 1:53 am #110433@mercime
ParticipantIf you want your members to create groups at will, then you could place it in member header area.
This is how to do it If you had created a child theme of bp-default theme and you want to place the create group button where it can be seen right away, you could copy this file https://trac.buddypress.org/browser/tags/1.2.8/bp-themes/bp-default/members/single/member-header.php from the bp-default theme into your child theme’s folder following the directory structure
i.e. wp-content/themes/yourchildtheme/members/single/member-header.php . Then you can insert the code as one of item buttons; and you should check if the Groups component was activated in your install first by adding conditional: if ( bp_is_active( ‘groups’ ) )== after the Add Friend, Mention this user buttons ==
`<a class="button" href="”>`
== or before the Add Friend, Mention this user buttons ==
`<a class="button" href="”>`
April 15, 2011 at 7:02 pm #110363In reply to: redirect to activity after login?
shanebp
ModeratorOops – thanks r-a-y.
I chopped down too much the function that I use.
Perhaps this better explains my approach:`
function login_intercepts(){
global $bp_unfiltered_uri;if ( is_user_logged_in() ) {
/* if user logs in at domain name url or logged-out, they are sent to /activity */
if ( ($bp_unfiltered_uri[0] == “”) || ($bp_unfiltered_uri[0] == “logged-out”) ) {
bp_core_redirect( get_option(‘siteurl’).”/activity” );
}/* if user logs in on activate page, they are sent to /welcome */
if ( $bp_unfiltered_uri[0] == “activate” ) {
bp_core_redirect( get_option(‘siteurl’).”/welcome” );
}//etc
}
}add_action( ‘wp’, ‘login_intercepts’, 3 );
`April 5, 2011 at 9:18 am #109593@mercime
Participant1. Did you “Publish” those pages already or are your pages “Draft”? If already published, click on Update Button on each page. Re-run Settings > Permalinks and save. Post content of your htaccess file here.
2. Do you have a membership plugin or something like User Access Manager (UAM)? Deactivate and delete. Clear cache and check if Pages still redirect to 404.
3. Go to dashboard > Tools > Export > XML.
Create a free WordPress.com account
In dashboard of your new WP.com account, dashboard Tools > Import WordPress WXR i.e. XML
See if Pages appear even when not logged in. Then go to Tools > Export > XML
If so, import the XML file into your install. If the pages are working in your WP.com, it should work now in your own install
— Delete the free WP.com account (unless you want to keep it.If that doesn’t do it, answer this:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/when-asking-for-support/April 5, 2011 at 5:47 am #109581In reply to: How to manage users & their extended profiles?
airfoil
Participant@Meini – I’m curious if you ever got anywhere with this user management plugin. I’m managing an older installation of WP/BP an need exactly the functionality you discuss here. I need to find users based on a certain xprofile field, but manage (deactivate) them via the WordPress admin. Do you have a plugin available I could look at? Thanks.
April 2, 2011 at 9:32 pm #1094061reason
MemberThanks and I am sorry that I did not include this information before
1. Which version of WP/MU are you running? 3.1
2. Did you install WP/MU as a directory or subdomain install? directory
3. If a directory install, is it in root or in a subdirectory? root (I think, I have it on godaddy)
4. Did you upgrade from a previous version of WP/MU? If so, from which version? no
5. Was WP/MU functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
6. Which version of BP are you running? no, went from wordpress to buddypress
7. Did you upgraded from a previous version of BP? If so, from which version? No, just loaded buddypress a couple of days ago
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
Amikelive Google Adsense Widget
BuddyPress Chat Component
BuddyPress Follow
BuddyPress Usernames Only
BuddyStream
Configure SMTP
Delete Spam Daily
Google Analytics for WordPress
Mail From
Math Comment Spam Protection
Quick Adsense
ShareThis
StatPress Reloaded
STC – Tweet Button
Wikinvest Wire
9. Are you using the standard BuddyPress themes or customized themes? standard
10. Have you modified the core files in any way? not that I know of
11. Do you have any custom functions in bp-custom.php? no
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? not running bbPress
13. Please provide a list of any errors in your server’s log files. none
14. Which company provides your hosting? godaddy
15. Is your server running Windows, or if Linux; Apache, nginx or something else? LinuxThanks
March 31, 2011 at 5:15 pm #109209@mercime
Participant@pjnu ok my bad, I had a de facto plugin in all multisite installs leftover from WPMU days (still effective today) which solved my requirements https://mu.wordpress.org/forums/topic/13675#post-79787
-
AuthorSearch Results