Search Results for 'activation email'
-
AuthorSearch Results
-
October 24, 2011 at 12:47 pm #123038
henrybcn
MemberFound the email template! It is part of the welcome-pack plugin. Now, trying to figure out how to turn HTML emails off and plain text email = on.
welcome-pack/templates/welcome_pack_default.phpOctober 24, 2011 at 10:38 am #123032In reply to: All activation emails going directly to SPAM folders
Paul Wong-Gibbs
KeymasterIt’s neither the fault of WordPress, BuddyPress or Welcome Pack that your emails are filtered into spam folders. I suggest changing the content of those emails so that email spam services are less likely to flag the email as spam. There may also be server configuration changes you could make to help.
October 24, 2011 at 10:27 am #123031In reply to: All activation emails going directly to SPAM folders
chaponnel
MemberUpdate! I now notice that this issue is directly related to the activation of Welcome Pack plugin, when deactivated activation emails go to the inbox… grr….
October 24, 2011 at 10:23 am #123030In reply to: [Resolved] Confirmation Email Problem
chaponnel
MemberI have the same issue, except that the confirmation email goes to spam with Welcome Pack plugin activated whereas when its deactivated the activation email does not go to spam…
I really want to use Welcome pack but obviously in this case I need to keep it turned off!
October 17, 2011 at 9:54 pm #123167In reply to: [Resolved] Member redirect loop
Lee Rickler
MemberDefault theme, totally clean, nothing running except latest WP and BP. No other plugins, nothing.
I even wiped the DB and started again.Clicking ‘members’ tab then clicking a members name.
Members are merely test accounts so I know they have logged in etc.
Also, new member emails/ activation codes were never sent.
Connected?October 11, 2011 at 9:08 pm #123075In reply to: After upgrade new members cannot sign up!
firynze
MemberI’m having this problem as well. I just did a fresh install of Buddypress and I’ve tried to set up two testing accounts. The accounts register the users in my User panel, but the activation emails are not arriving and therefore the users can’t log in and use the site!
October 8, 2011 at 11:20 pm #122786In reply to: Not getting registration/activation email
antdiggitty
Memberthank you very much!!
October 8, 2011 at 10:19 am #122752In reply to: Not getting registration/activation email
adjin
MemberMe too, I have a lot of Unconfirmed emails pending everyday … 10 to 20 per day !!
Then I need to activate them manually …
Very annoying !I cannot find any reason WHY those people didnt get the confirmation email in their inbox …
I asked all of them : did you check your spam filter … but this is not the issue.Don’t know what to do …?
I’m loosing many subscribers because of this.I must say I’m using WP last version + BP 1.5 + s2Member + BBpress plugin
Any help appreciated.
(I will try the WP-mail plugin to see if it can solve my problem)October 8, 2011 at 1:32 am #122702In reply to: Not getting registration/activation email
aces
ParticipantIF wordpress isn’t sending any emails (ie they’re not in spam or junk folders) it may need an extra plugin – see https://codex.buddypress.org/troubleshooting/frequently-asked-questions/
Or try https://wordpress.org/extend/plugins/wp-mail-smtp/ to help diagnose where the issue is and add some extra settings to fix it…October 7, 2011 at 3:05 pm #122663In reply to: Activation Key not being emailed
pete_elp
Memberigeekout I completely understand what you mean as I having the same issue. did you ever figure anything out for this, putting an explanation on there is a bit messy for the user.
September 26, 2011 at 9:22 pm #121172In reply to: User registration activation keys not working
Mariestella
MemberI have the same problem. New users cannot register after the latest bp update. The activation is sent via email and once you click on the link you are redirected to the new activate page where this error shows: ‘There was an error activating your account, please try again.’
I tried using the key # by itself on the text field but it does not go through.September 26, 2011 at 10:20 am #121121In reply to: Buddypress mails
Tammie Lister
ModeratorWhen you say can’t send out emails are you on a server that has been set up to email? I ask this as you may not be.
Also what happens on activation does it just not send out?
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/registration-not-working may also help you.
September 12, 2011 at 1:11 am #119898In reply to: Registration Approval Plugin
acurran
MemberMy 3 step solution to this problem is as follows:
1. Install plugin – BuddyPress Pending Activations (https://wordpress.org/extend/plugins/buddypress-pending-activations/)
2. Make hack to plugin function bp_pending_activations_admin() so that it sends an email when a user is activated:
$resendusers = $wpdb->get_results( $wpdb->prepare( “SELECT u.ID, u.user_login, u.user_email, m.meta_value FROM ” . CUSTOM_USER_META_TABLE . ” m, “. CUSTOM_USER_TABLE .” u WHERE u.ID = m.user_id AND m.meta_key = ‘activation_key’ AND u.ID IN ({$userids})” ) );foreach ( $resendusers as $resend ) {
/* Activate the signup */
$user = apply_filters( ‘bp_core_activate_account’, bp_core_activate_signup( $resend->meta_value ) );/* If there was errors, add a message and redirect */
if ( $user->errors ) {
echo ‘There was an error activating this account, please try again: ‘. $resend->user_login;
} else {
$to = $resend->user_email;
$subject = “Your ?????? Account Has Been Activated!”;
$message = “Your account has been activated. Go to http://??????/ and sign in with the username and password that you created when you signed up.nnWelcome to ?????!”;
$admin_email = get_site_option( “admin_email” );
$from_name = “??????????”;
$message_headers = “MIME-Version: 1.0n” . “From: “{$from_name}” n” . “Content-Type: text/plain; charset=”” . get_option( ‘blog_charset’ ) . “”n”;
wp_mail( $to, $subject, $message, $message_headers );
}
3. Redirect activation email to admin (to use as a noitification for admin instead of automatically sending activition key to user) by adding this to functions.php:
function change_activation_email_to($content) {
return get_site_option( “admin_email” );
}
add_filter( ‘bp_core_activation_signup_user_notification_to’, ‘change_activation_email_to’);So the when a new user signs up, they do not get any activation email. That goes to the admin instead. You will need to change the wording in your template to let the user know that they have to wait for manual approval. Admin logs in to WP admin and goes to Pending Activitations and activates the user. An email is sent to user to let them know they have been activated.
September 1, 2011 at 8:25 pm #119388In reply to: New users xprofile data being lost
nicholmikey
ParticipantSo this is what happened, the plugin “Multisite User Management” has a hook that fires when you make a new user in order to automatically assign users roles to certain blogs. This all worked fine in my dev environment, but on my production site the plugin took so long that it would crash PHP during the activation process. I fixed this by disabling that plugin. Now I was left with 80+ users that were missing their xprofile data and passwords that they set, as the script crashed before it could get to that point. (no data being copied to xprofile tables). I fixed their profiles by selecting damaged users from the wp_signups table and running the code from bp-core-signup.php that was missed due to crashes.
This code updates all users from the 20th of august to today (the date range of the problem)
`
<?phprequire( dirname(__FILE__) . ‘/wp-load.php’ );
global $bp, $wp, $wpdb;$users = $wpdb->get_results( “SELECT * FROM wp_signups WHERE registered > ‘2011-08-22 00:00:00′”);
$user_id = $user;
foreach ($users as $dbuser){
echo $dbuser->user_login . ‘
‘;
$meta = unserialize($dbuser->meta);
$user_login = $wpdb->escape($dbuser->user_login);
$user_email = $wpdb->escape($dbuser->user_email);
$password = wp_generate_password( 12, false );
$user_id = username_exists($user_login);$user = array(‘blog_id’ => ‘0’, ‘user_id’ => $user_id, ‘password’ => $password, ‘title’ => $signup->title, ‘meta’ => $meta);
if ( function_exists( ‘xprofile_set_field_data’ ) ) {
if ( !empty( $user ) ) {
$profile_field_ids = explode( ‘,’, $user );foreach( (array)$profile_field_ids as $field_id ) {
$current_field = $user[“field_{$field_id}”];if ( !empty( $current_field ) )
xprofile_set_field_data( $field_id, $user_id, $current_field );
}
}
}/* Update the user_url and display_name */
wp_update_user( array( ‘ID’ => $user_id, ‘user_url’ => bp_core_get_user_domain( $user_id, sanitize_title( $user_login ), $user_login ), ‘display_name’ => bp_core_get_user_displayname( $user_id ) ) );/* Add a last active entry */
update_user_meta( $user_id, ‘last_activity’, bp_core_current_time() );/* Set the password on multisite installs */
if ( bp_core_is_multisite() && !empty( $user ) )
$wpdb->query( $wpdb->prepare( “UPDATE $wpdb->users SET user_pass = %s WHERE ID = %d”, $user, $user_id ) );/* Delete the total member cache */
wp_cache_delete( ‘bp_total_member_count’, ‘bp’ );}
echo ‘all done’;
?>
`August 25, 2011 at 7:24 pm #119079kerri3317
MemberWhat if the activation email is not going out??
Admin profile viewing question is also still out there.August 20, 2011 at 8:01 pm #118778August 10, 2011 at 11:08 pm #118172In reply to: Activation Code after New Member Registration
Whitefox
MemberOK so I’ve had the same problem and have built a very clumsy workaround.
PROBLEM: When the user click the email verification it sends them to verify.php and logs them in to WP but my Buddypress doesn’t know they are logged in and asks them to login. If the user just ignores the login request there is no problem but users don’t do that so they try to login and get the same “error..please provide a valid activation key” message because the account is already active.
MY RUBBISH ANSWER: The only thing that worked for me was to hide the BP admin bar and handle login links manually then change the text on the verify.php to a simple ‘congratulations, you’re in’ message. The downside of this is that I lost the use of my BP-Sliding-Login-Panel which I love. so I would be very grateful for a real solution to this.
August 10, 2011 at 10:46 am #118127In reply to: Registration fail – page just reloads
Whitefox
MemberI have been working through a similar problem where WP sends an activation email and the new user replies. The user is then logged in to WP but NOT BP…. so if the user tries to login as BP says they should it will generate an error because they are already logged in!
I am having to tell newly registered users to close their browser then re-open and login.
If someone comes up with a more viable option I would be very grateful.
August 4, 2011 at 8:39 pm #117707enderandrew
MemberYou can check the time stamps of the emails to get an idea of when the mailsender sent them. That might give you a better idea if it is your mailsender on the server, or something else delaying the emails.
August 4, 2011 at 8:07 pm #117701enderandrew
MemberThe email delay could be your mailsender, it could be the receiver, or anything in between. Most of the time email is relatively instant, except the times when it isn’t.
August 4, 2011 at 7:57 pm #117700Andrea Rennick
Participant” ( preferably not a plugin, Is there some code edits can achieve this)?”
It’s basically the same thing.
https://wordpress.org/extend/plugins/bp-disable-activation/And your emails not getting sent out in time is a server setting.
July 30, 2011 at 12:49 am #117193In reply to: New Users unable to register –
@mercime
ParticipantFirst, ask users to check if activation email went to spam folder. If not, wome webhosts have problem with WP mail. Some have used this plugin successfully https://wordpress.org/extend/plugins/wp-mail-smtp/
July 29, 2011 at 11:56 am #117150In reply to: Activation Code after New Member Registration
igeekout
MemberI have a similar issue where users sign up, get the activation email but are sent to a page asking for an activation key to be entered in an input field. One member on this site told me the key is the in the url. Sure, I realize that. But how do the users know that?
July 27, 2011 at 6:00 pm #117028In reply to: Activation Key not being emailed
igeekout
MemberLooks like ill have to add some text to that email stating that incasae they are prompted with that field.
There is no indication that that needs to be done.
July 27, 2011 at 5:49 pm #117026In reply to: Activation Key not being emailed
Andrea Rennick
Participantthey only need to copy/paste that info if for some reason the key in that URL does not show in their address bar.
-
AuthorSearch Results