Search Results for 'activation email'
-
AuthorSearch Results
-
June 4, 2010 at 8:20 pm #80714
In reply to: Moderate Signup / Restrict Registration
techguyParticipantYep, I just tried the Welcome Pack and you can remove the link and change the email that way and it sends to the user.
So, then you can just manually pull the activation key from the database using PhpMyAdmin or something and append it to a url like this: http://yourdomain.com/activate?key=KEY-FROM-DATABASE
June 4, 2010 at 8:02 pm #80713In reply to: Moderate Signup / Restrict Registration
techguyParticipantSince 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 4, 2010 at 5:03 pm #80677In reply to: Disable Activation Email
techguyParticipantAndy’s solution was for WP, but it didn’t work for WPMU. For WP, there’s this plugin: https://buddypress.org/community/groups/bp-disable-activation/ We’ve been working on an MU solution in this thread: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/i-would-like-to-disable-email-activation/?topic_page=1&num=15) However, haven’t quite gotten it to work right.
June 4, 2010 at 4:29 pm #80668In reply to: Disable Activation Email
rich! @ etivitiParticipanti don’t have the thread on hand but andy posted up a solution with filters/hooks to disable the email and change the user status
June 4, 2010 at 4:27 pm #80667In reply to: Disable Activation Email
MarkParticipantJust subscribing because I’m also interested in a solution to this.
June 3, 2010 at 1:55 pm #80509In reply to: Moderate Signup / Restrict Registration
Van MurrayParticipant@zlamczyk: I think we are trying to work on the same thing.
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/disable-activation-email/I am getting spammed (bad) and they are simply using the activation email to approve themselves. My thought was just do a manual approval to either “activate”, “send activation email” or “delete from wp-signup”.
I have modified manual member approve for BuddyPress so I can see the signup table and manually approve members.
http://mattkern.com/wpmu-manually-approve-new-members-on-local-install/I just need to stop the automatic sending of the activation email. Do you know how?
I’ve simply tried commenting out the following line in wp-core-signup.php to test, but it’s not working.
wp_mail( $to, $subject, $message, $message_headers );This is the function; but for some reason the activation email still goes out.
June 3, 2010 at 5:16 am #80470In reply to: Disabling email activations
techguyParticipantThis thread has the closest solution I’ve found: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/i-would-like-to-disable-email-activation/?topic_page=1&num=15 Still has a couple issues to workaround though.
June 2, 2010 at 9:44 pm #80443Van MurrayParticipant@hnla and @boonebgorges: I found this plugin a while back and modified it to work with BuddyPress. Let me know if you need it still.
Anyone know how to stop sending the activation email? I don’t want to disable the activation function; I just want to stop sending the email automatically. I want to selectively send it. I figure I would just add this function to the manual approve plugin so I could either:
Manually Approve
Manually Send Activation Email
Delete the SignupI’m getting killed with spam users (that are easily identifiable)
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/spam-blogs/June 2, 2010 at 4:58 pm #80410In reply to: Spam Blogs
Van MurrayParticipantAlso; each “blast” of spam users/blogs appear to come from different IPs, but the username always has a 7 digit number pattern after a random name. They all appear to come from “.info” email registrations.
These registrations are bypassing the public registration form requirements somehow, but I believe they are legitimately activating their account (since I’ve had delays after disabling the registration form). There are entries in both _users and _signups tables that match.
Hope this helps if anyone else is having this issue. I’m open to any temporary solutions for this particular pattern, but more importantly is there a good way to solve this long term?
Is there a way to manually approve members? Maybe some step in between that would allow a manual send of the account activation email?
June 2, 2010 at 1:26 am #80359davidmiller72Memberok guys. figured it out. this killed me today. godamighty.
needed somebody to send me link to this resource:
anyway, there’s some kind of mail issue for ppl hosted at bluehost. you have to get the Mail From plugin:
http://code.andrewhamilton.net/wordpress/plugins/mail-from/
and then everything works fine.
just heads up for ppl that have this issue in the future.
June 1, 2010 at 7:35 pm #80321davidmiller72Memberany other suggestions?
June 1, 2010 at 6:58 pm #80318davidmiller72Memberyes, receiving email from WP (comment notification).
June 1, 2010 at 5:29 pm #80308Paul Wong-GibbsKeymasterDisable BuddyPress. Do you get any emails from WordPress on itself? e.g. user registration, comment notification, etc.
June 1, 2010 at 4:54 pm #80303davidmiller72Memberi just deleted the plugin. then reinstalled. tested with a different email account.
is it possible that there’s something wrong with my server that’s preventing these emails from being sent?
May 29, 2010 at 12:10 am #80034In reply to: I would like to disable Email activation
techguyParticipantIf 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 28, 2010 at 11:48 pm #80031In reply to: I would like to disable Email activation
mazenMember@crashutah thanks a lot man for your responses and information. I’ve noticed that there is some differences indeed between single and MU handling the whole registration, activation, and log in processes.
I tried this piece of code (in my functions.php after the disabling activation and email bits) however it game me some weird behavior and my backend became non functional. I probably missed something (used the code as is while I needed to modify) or maybe one of my other plugins is causing misbehavior? I have auto redirect to profile on login plugin, and branded login plugin activated.
Cheers.
May 28, 2010 at 11:00 pm #80027In reply to: I would like to disable Email activation
techguyParticipant@mazen I just figured out the code to make it work on WP. I’ll add it to my plugin above soon. Here’s the code:
//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);I tried it a little with WPMU. It kind of works, but there’s some sequencing that needs to happen better. Cause it logs me in, but not before the login box appears in the sidebar. So, it looks like you’re not logged in, but you are. Which is weird, because it’s not happening to me on WP. Although, it’s likely cause on WP I’m hooking to bp_core_signup_user and in WPMU it hooks to wpmu_signup_user_notification.
Who’s for a unified signup process (WPMU and WP) now that they’re one?
May 27, 2010 at 3:19 pm #79900In reply to: I would like to disable Email activation
techguyParticipant@mazen I’m planning to look at this as well. Just haven’t had time yet. My plan was to look at how this plugin does it: https://wordpress.org/extend/plugins/wp-fb-autoconnect/ Hopefully that can be used to do the automatic login. I know there’s a paid plugin that does it so it’s possible.
May 26, 2010 at 7:30 pm #79816In reply to: I would like to disable Email activation
mazenMemberhey guys, this is all awesome, btw the code to disable activation email from being sent is not working, however I edited that into a welcome email instead and removed the link. My qustion is, how can we automatically sign in registered users?
They are activated already so it is pointless to ask them to log in, really.
Any ideas?
Cheers.
May 25, 2010 at 1:02 pm #79587In reply to: Email Activation not being sent in upgraded BP 1.2.2
HolloschParticipantProblem was a NOT-installed Mailserver on a v-server
May 17, 2010 at 5:18 pm #78541In reply to: Activation Email not working
techguyParticipantMay 17, 2010 at 4:43 pm #78533In reply to: Activation Email not working
PsyberParticipantI have had this issue as well and I am running WP MU 2.9.2 w/ BP 1.2.3. This also occurred in previous releases of BuddyPress.
May 17, 2010 at 4:39 pm #78532In reply to: Activation Email not working
BillyParticipantHi, I’ve just created my first installation of buddypress and I’m having the same issue. Activation email hasn’t been received for 3 accounts I’ve set up with 3 different email addresses.
any ideas? thanks!
Billy
May 17, 2010 at 4:34 pm #78529In reply to: BP mark as spammers acts wierd in 1.2.2.1
suzette1970ParticipantIs there anyway to disable activation emails so that people do not have to click to activate their membership? We are using the s2member plugin and 95% of our paid users miss the email or it gets filed in bulk email.
May 16, 2010 at 5:29 pm #78383In reply to: BuddyPress as a school network
Frank & SteinParticipantHello Boone.
Thank you for your kind help. I’m new to BP and i am still trying to understand in depth how it works. About your suggestions there are a few things that do not work exactly as you said (at least for me).
1. Admin has to approve all new sign-ups and make the new Member part of 1 (and only one) Group. Only after this action by the Admin, an activation email is sent to the new Member. As an alternative to this process, a new Member could only sign-up after the Admin sends him an invite to a particular Group.
I need the Admin to review the sign-up request, add the new member to a particular group and then send a confirmation to the new member. With the suggestion you made (wp-invites + bp-group-management) all works well, but the member gains access to the website as soon as he signs-up. When he logs in for the first time he is still not part of a group, because most probably the Admin didn’t have time to do this. For me it’s not important if the system is set in a way that it has to be the Admin to invite new members or if is up for the new members to ask to join. As long as the new member gains access exclusively after he has been added to a group by the Admin.2. If the Groups are set to private they still appear in the group directory. I changed them to hidden and now they can only be seen by it’s members, which is perfect for my needs. But since that now i’m left with one empty tab in the groups directory (all groups), is there a way of making it disappear by editing some file? If so, which one and where?
3. Members can only see the list of the other Members of his Group
For now, even with all groups set to hidden, the members can have access to a list of all members. Is there a way to make them have access to a list of only the members of his group?4. How can i prevent members to exit the group or groups they are part of? Maybe by editing some file?
Again, i appreciate all the help that you can provide.
Thank you. -
AuthorSearch Results