Search Results for 'wp user activate'
-
AuthorSearch Results
-
July 1, 2010 at 7:23 pm #83834
In reply to: Buddypress and WP MultiSite?
r-a-y
KeymasterYou should network activate BuddyPress.
This is so your user blogs can take advantage of BP functions. Most notably, the BuddyBar gets displayed at the top of each blog and your user avatars should use your BP one.
June 30, 2010 at 4:02 pm #83616In reply to: Need Testers: Activation Issue with BP v 1.2.5
Jeff Sayre
Participant@ seagrinch –
Thanks for the report. This confirms my suspicions. BuddyPress v1.2.5 has an activation issue under WP 2.9.2. So, as I stated above, the “Requires at least” tag in BP’s readme.txt file should be changed to WP 3.0. Otherwise, we will have people activating BP for a single blog, and not site wide–that is if they just click the “Activate” link in WP 2.9.2.
The other option is to give users of WP 2.9.2 clear, explicit instructions that they have to click the “Activate BuddyPress Site Wide” link instead of the “Activate” link. However, this will not guarantee that most users will actually see these instructions.
June 30, 2010 at 3:38 pm #83611seagrinch
ParticipantTurns out BP 1.2.5 may not be automatically activating site-wide in WP 2.9.2. Forcing it to activate site-wide fixes this issue.
June 28, 2010 at 1:41 am #83187In reply to: Missing admin bar menu items
Boone Gorges
KeymasterThe Wire feature was deprecated with BuddyPress version 1.2. If you’d like to use the Wire, try installing the BuddyPress Backward Compatibility plugin and activating the wire feature: https://wordpress.org/extend/plugins/buddypress-backwards-compatibility/
The functionality of the wire – namely, the ability to leave short messages for other users – has mainly been replaced by the @-mention feature.
If you want users to have their own individual blogs, you’ll have to activate WP Network mode. If you want them to be able to post on your main BuddyPress blog, they’ll have to be at least Contributors. If you just want them to be able to post messages for others to see, then perhaps the status update feature will be enough.
June 27, 2010 at 9:27 pm #83159lincme.co.uk
Member@elizawhat; Your post made me think, and I checked our (not yet) live site, which does require email confirmation. Mostly I’m thrashing around at home with a local xammp installation, and can’t remember what I did to make the live one require email conf. The plugin linked to below should do it, although it’s not activated in our site..! Something in WP or BP lets you require email confirmation, but I can’t remember what.
June 26, 2010 at 7:24 am #82923Romik84
Membermy current code looks like this:
`// Add the actions and filters we need to make all this run
add_action(‘signup_blogform’, array(&$cets_wpmubt, ‘get_topics_select_signup’));
add_filter(‘wpmu_new_blog’, array(&$cets_wpmubt, ‘set_new_blog_topic’), 101);
add_filter(‘wpmu_activate_blog’, array(&$cets_wpmubt, ‘set_new_blog_topic’), 101);
add_action(‘bp_after_blog_details_fields’, array(&$cets_wpmubt, ‘get_topics_select_signup’));
add_action(‘signup_finished’, array(&$cets_wpmubt, ‘save_signup_blog_topic’));
add_action(‘bp_signup_usermeta’, array(&$cets_wpmubt, ‘save_signup_blog_topic’));
add_action(‘admin_menu’, array(&$cets_wpmubt, ‘add_submenu’));
add_action(‘admin_menu’, array(&$cets_wpmubt, ‘add_siteadmin_page’));
add_action(‘delete_blog’, array(&$cets_wpmubt, ‘update_relationships’));`this add the select menu in the Sign Up form but it still doesn’t save the selected Topic for the blog. Any ideas?
June 18, 2010 at 11:20 am #81846In reply to: How do I use buddypress?
Hugo Ashmore
ParticipantBuddypress runs as a plugin of a WordPress install, either WP single or WPMU / WP MS(WP 3.0)
If you have your WordPress install up and running then you need to upload or install via dashboard the BP plugin and activate, no further domain issues unless you have decided to run user blogs then you have considerations such as sub domains for the user blogs or sub directories and possible DNS issues if you want to use sub domains.
June 8, 2010 at 12:17 am #80952In reply to: Run all Buddypress pages within Backend
@mercime
Participant@themeanwhile – you can enable or disable the various components so if you want Activities only, enable that and disable other components. After you activate BuddyPress, go to the new BuddyPress menu item on the left column of dashboard, and go to
a) General Settings – these are your choices
Base profile group name:
Full Name field name:
Disable BuddyPress to WordPress profile syncing?: Yes No
Hide admin bar for logged out users?: Yes No
Disable avatar uploads? (Gravatars will still work): Yes No
Disable user account deletion?: Yes No
Disable global forum directory?: Yes No
Disable activity stream commenting on blog and forum posts?: Yes No
Default User Avatar – For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email addressb) Component Setup
Activity Streams – Allow users to post activity updates and track all activity across the entire site.
Enabled Disabled
Blog Tracking – Tracks blogs, blog posts and blogs comments for a user across a WPMU installation.
Enabled Disabled
bbPress Forums – Activates bbPress forum support within BuddyPress groups or any other custom component.
Enabled Disabled
Friends – Allows the creation of friend connections between users.
Enabled Disabled
Groups – Let users create, join and participate in groups.
Enabled Disabled
Private Messaging – Let users send private messages to one another. Site admins can also send site-wide notices.
Enabled Disabled
Extended Profiles – Activates customizable profiles and avatars for site users.
Enabled DisabledI would suggest you set up a test install so you can check the features for yourself.
“Of course, activity filters, profile page, friends page, settings page, etc, would also need to be migrated to display in the backend.”
Why? If you want to make the BP Activity section private, you can add conditional tags for is_user_logged_in …June 4, 2010 at 8:02 pm #80713In reply to: Moderate Signup / Restrict Registration
techguy
ParticipantSince you’re using WPMU, BP just basically calls the WPMU user creation (see lines 320-321 in bp-core-signup.php). So, you’re going to have to mod the WPMU signup functionality to get the emails to send right.
Another temp option is to try the Welcome Pack plugin which allows you to modify the activation email that users get (I haven’t tried to take the link out, but it seems possible). That would solve the email they get.
Then, you could build a plugin to activate the users. Until then, you can just copy the activation key out of the database using phpmyadmin and browse to the URL yourself. Far from ideal, but the Flintstone way if you’re in a time crunch and need to get by until you can get a plugin.
June 3, 2010 at 4:45 pm #80519In reply to: Join all public groups at once
techguy
ParticipantYou’ll have to know some coding to do this. This will get you started if you know some code.
You can add the hook to the following:
add_action( ‘bp_core_signup_user’, ‘join_all_public_groups’, 10, 3 ); //For WP
add_action( ‘bp_core_activated_user’, ‘join_all_public_groups’, 10, 3 );//For WPMUThen, in the “join_all_public_groups” function, you can use this call to have them join groups: groups_join_group( $group_id, $user_id ); You’ll just need to loop through the list of groups.
June 2, 2010 at 8:24 pm #80429In reply to: Importing data from Excel, CSV sheet
WPChina
ParticipantI just re-installed my Buddypress site and switched from WPMU+Buddypress to just normal WP+Buddypress. The plugin here now appears to not work:
http://manojkumar.org/user-import-for-buddypress/I manually uploaded it to my server and activated it and all seemed fine. But I can find no link to the plugin within my adm area. Maybe it does work fine but I can not find the link to where to upload users…. anybody have an idea?
May 31, 2010 at 3:16 pm #80199In reply to: Spam Blogs
Van Murray
ParticipantI have a couple BuddyPress installs. The older of the 2 has received 150+ spam member registrations (and blogs) this weekend. All create members like bob45873675 and “Bob’s Blog”.
I have changed slugs, activated recaptcha and followed several blog posts on best practices. What’s interesting is they are somehow bypassing my registration page. I have required fields and have removed the “create a blog” from the registration page; but somehow they manage to create an account and a blog. I also receive “lost password reset” email notices for each account that is created, so maybe that’s a clue to where the issue is.
I was so fed up with it, I disabled registrations completely (only allowing blog creation by logged in users) — and I’m still getting new spam members and blogs (how is that possible??) This seems to be a pretty serious security issue that is different from previous “splogging”…
Vulnerability/hack in the registration or lost password, etc…?? I presume this could be WPMU not necessarily BP?
May 31, 2010 at 8:51 am #80177In reply to: Users Can’t Add Additional Blogs
gasparking
Participanti have the same problem with wpmu 2.92 and bp 1.2.4.1
I have to deactivate buddypress in order to creat blogs.
Once blog created and buddypress reactivated, i am not able to link the blog with the group-blog plugin.Does anybody have a solution ?
May 29, 2010 at 12:10 am #80034In reply to: I would like to disable Email activation
techguy
ParticipantIf you put it in functions.php you’ll probably need to do something like this:
function auto_login_bp() {
//Automatically log the user in
$user_info = get_userdata($user_id);
wp_set_auth_cookie($user_id);
do_action(‘wp_signon’, $user_info->user_login);
}add_filter( ‘wpmu_signup_user_notification’, ‘auto_login_bp’ );
Although, even then it might not know the $user_id variable. So, you might have to add the code in my original post to the bp-auto-activate-user-and-blog plugin on line 170 or so. Although, that will cause the issues I mentioned above I think.
May 23, 2010 at 12:16 pm #79312In reply to: Upgraded to 1.2.4 and now No Blogs Showing!
Hugo Ashmore
ParticipantThought I’d test this blog DB issue.
Chose an older test install with BP 1.2 – deactivated ALL plugins, removed all old BP folder and files, brought WPMU up to latest version from 2.9.1. Confirmed WPMU & blogs running correctly
Downloaded BP 2.2.4 Activated (doesn’t activate sitewide?!) enabled default theme but NO other plugins; visit site no blogs!
Check DB and confirm table dropped

Reset table rows as before, nothing still no blogs under BP & and of course no primary blog so can’t get back to dashboard normally

Feels as though 2.2.4 is built for WP 3.0? doesn’t feel backward compatible.
Not sure how this made it through any basic testing really to release candidate.
I would hope this release was retracted very quickly until the issue is resolved before others trot of and god forbid upgrade production sites with large numbers of user blogs and inadequate backups.
May 23, 2010 at 11:34 am #79304In reply to: Upgraded to 1.2.4 and now No Blogs Showing!
Stephen Glanville
ParticipantOh! And it may be worth noting that BuddyPress used to appear in the Site-Wide Plugins list in WPMU…it now appears in the normal plugins list…which would in theory (I have checked it and I’m not going to try), that Users would be able to Activate/Deactivate BP via their Blog Admin (unless of course I hid it).
Geez!
Stephen G
May 21, 2010 at 9:50 pm #79118In reply to: Removing ”Blogs” out of Member navigations
@mercime
ParticipantSome thoughts;
– Assuming you don’t want others creating blogs in your installation, and you’re on WPMU, go to Site Admin > Options – under Registration Settings – choose ” User accounts may be registered.”
– Deactivate the Blogs component in admin dashboard – BuddyPress > Components Setup – under Blog Tracking – choose disabled
– Furthermore – https://codex.buddypress.org/how-to-guides/modifying-the-buddypress-admin-bar/May 18, 2010 at 7:01 am #78681balukorrapati
ParticipantThanks for the reply. Please find the answers below.
1. Which version of WP/MU are you running?
—I am using WP2.9.1
2. Did you install WP/MU as a directory or subdomain install?
— As a directory
3. If a directory install, is it in root or in a subdirectory?
—-it is in root
4. Did you upgraded 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.
—Yes
6. Which version of BP are you running?
—1.2.3
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?
— I am using some other plugins for WP and BuddyPress
9. Are you using the standard BuddyPress themes or customized themes?
—I am using my existing WP theme and used bp_template_pack plugin and modified css in my theme
10. Have you modified the core files in any way?
—- I have modified bp_adminbar.php to include some links
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?
— I have installed bbPress through admin panel
13. Please provide a list of any errors in your server’s log files.
14. Which company provides your hosting?
—GoDaddyPlease suggest me on this as soon as possible.
Thanks,
BalukorrapatiMay 13, 2010 at 12:05 am #77900In reply to: I would like to disable Email activation
techguy
ParticipantThanks to Sarah Gooding, I found this plugin which mostly works with WPMU 2.9.2 and BP 1.2.3: http://www.thinkinginwordpress.com/2009/10/autoactivate-users-and-blogs-at-buddypress-signup/ Only problem is that it still sends the activation email despite the email already being active.
My hope is to incorporate the code from Andy so that it will work with both WPMU and WP and then make it so neither one sends the activation email.
If anyone has ideas why it’s sending the activation email in WPMU, I’d appreciate any help. Seems like it might be a priority issue, but I haven’t yet figured that out.
May 12, 2010 at 4:58 pm #77812cherryblossommj
Member1. Which version of WP/MU are you running?
WP2.9.2
2. Did you install WP/MU as a directory or subdomain install?
subdomain
3. If a directory install, is it in root or in a subdirectory?
4. Did you upgraded from a previous version of WP/MU? If so, from which version?
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?
1.2.3
7. Did you upgraded from a previous version of BP? If so, from which version?
8. Do you have any plugins other than BuddyPress installed and activated?
commentluv, smartlinks, akismet, blogroll page, blogroll widget with RSS feed, buddypress album+, group activity subscription, import from ning, tdlc birthdays,
9. Are you using the standard BuddyPress themes or customized themes?
standard
10. Have you modified the core files in any way?
added a frame for blockquotes
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?
don’t know
13. Please provide a list of any errors in your server’s log files.
n/a
14. Which company provides your hosting?
hostgatorWould someone please help me. More and more people are having issues either with registration in the first place or with changing profiles. I’m debating whether buddypress was the right way to go at all. I would really love some help here.
May 12, 2010 at 11:37 am #77767Jeff Sayre
ParticipantFirst of all, we may need more information. If what I suggest below does not resolve your issue, then please answer these questions: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/when-asking-for-support/
The error message that you have posted is strange. BuddyPress does not have a file called bp-cores.php. You mentioned that you made some file modifications. Did you open up the file bp-loader.php? I would look in that file on line 19 to see if you accidentally added an “s” to bp-core. Line 19 should read:
require_once( WP_PLUGIN_DIR . '/buddypress/bp-core.php' );
If you see that there is an “s” but you are sure that you did not change it yourself, I would suggest deactivating then deleting BuddyPress. Then redownload BuddyPress and reinstall. Make sure your are downloading BuddyPress from this site
Finally, when trying to debug BuddyPress, always use the default theme and deactivate all other plugins. You need to isolate what is happening within BuddyPress.
May 11, 2010 at 3:09 pm #77670In reply to: new version of BuddyPress Rate Forum Posts
mazen
Member@Dwenaus Thanks for this awesome plugin. Just one concern mate, it causes a JS error (the one that appears at the bottom left corner) on IE8. I made sure the script error comes from this plugin because whenever I deactivate or I am not on forum pages, the small yellow triangle disappears.
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; FDM)
Timestamp: Tue, 11 May 2010 15:09:01 UTC
Message: ‘length’ is null or not an object
Line: 12
Char: 7740
Code: 0
URI: http://aravig.com/wp-includes/js/jquery/jquery.js?ver=1.3.2Can you please advise?
Cheers.
May 10, 2010 at 11:06 pm #77580In reply to: How do you know who has confirmed ?
techguy
ParticipantIn the database (preferably with something like PHPMyAdmin) you can look at the table wp_signups under the column “active.” That’s WPMU. In WP you can look at the wp_users table. If I remember right, it just changes user_status.
I don’t know of a plugin that’s pulled this information. @boonebgorges has talked about a plugin that would do close to this including resending the activation email and clearing out ones that didn’t activate, but otherwise I don’t know a plugin that will do this.
May 8, 2010 at 4:35 am #77148In reply to: Members only
Shnooka30
ParticipantThanks, I did install that and there is a load of info there. Maybe ill work on that and see how it is.
This plug-in works great, however it sends users to the backend login form and not the register page. Can’t figure out how to redirect to register page.
class RegisteredUsersOnly {
var $exclusions = array();
// Class initialization
function RegisteredUsersOnly ()
{
// Register our hooks
add_action( ‘wp’, array(&$this, ‘MaybeRedirect’) );
add_action( ‘init’, array(&$this, ‘LoginFormMessage’) );
add_action( ‘login_head’, array(&$this, ‘NoIndex’), 1 );}
// Depending on conditions, run an authentication check
function MaybeRedirect() {
global $bp;
// If the user is logged in, then abort
if ( current_user_can(‘read’) ) return;if ($bp&&($bp->current_component == BP_REGISTER_SLUG ))//buddypress
return;
#’wp-trackback.php’,
#’wp-app.php’,
$this->exclusions = array(
‘wp-login.php’,
‘wp-signup.php’,
‘wp-register.php’,
‘wp-activate.php’,
‘wp-cron.php’ // Just incase
);
// If the current script name is in the exclusion list, abort
if ( in_array( basename($_SERVER), apply_filters( ‘registered-users-only_exclusions’, $this->exclusions) ) ) return;// Still here? Okay, then redirect to the login form
auth_redirect();
}// Use some deprecate code (yeah, I know) to insert a “You must login” error message to the login form
// If this breaks in the future, oh well, it’s just a pretty message for users
function LoginFormMessage() {
// Don’t show the error message if anything else is going on (registration, etc.)
if ( ‘wp-login.php’ != basename($_SERVER) || !empty($_POST) || ( !empty($_GET) && empty($_GET) ) ) return;global $error;
$error = __( ‘Only registered users can watch this site. Please register or login.’, ‘registered-users-only’ );
}// Tell bots to go away (they shouldn’t index the login form)
function NoIndex() {
echo ” n”;
}}
// Start this plugin once all other plugins are fully loaded
add_action( ‘plugins_loaded’, create_function( ”, ‘global $RegisteredUsersOnly; $RegisteredUsersOnly = new RegisteredUsersOnly();’ ) );May 7, 2010 at 7:50 pm #77105In reply to: I would like to disable Email activation
techguy
ParticipantM,
Yes, I thought of that. I installed the beta copy of WP 3.0 today and found that the users are still stored in the same places for a WP/BP install or a WPMU/BP install as they are separate. So, unless they’ve changed the core user signup calls, then we should be good, but I’ll be sure to test it.It’s just too bad that there’s not some BP functions that I could just call like bp_core_creat_user(some variables) and bp_core_activate_user(some variables) so we didn’t have to dig in to figure out the functions that BP is already calling at registration. Maybe there is and I just don’t know it?
-
AuthorSearch Results