Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'activation email'

Viewing 25 results - 751 through 775 (of 1,244 total)
  • Author
    Search Results
  • henrybcn
    Member

    Found 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.php

    #123032
    Paul Wong-Gibbs
    Keymaster

    It’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.

    #123031
    chaponnel
    Member

    Update! 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….

    #123030
    chaponnel
    Member

    I 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!

    #123167
    Lee Rickler
    Member

    Default 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?

    #123075
    firynze
    Member

    I’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!

    #122786
    antdiggitty
    Member

    thank you very much!!

    #122752
    adjin
    Member

    Me 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)

    #122702
    aces
    Participant

    IF 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…

    #122663
    pete_elp
    Member

    igeekout 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.

    #121172
    Mariestella
    Member

    I 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.

    #121121

    In reply to: Buddypress mails

    Tammie Lister
    Moderator

    When 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.

    #119898
    acurran
    Member

    My 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.

    #119388
    nicholmikey
    Participant

    So 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)

    `
    <?php

    require( 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’;

    ?>
    `

    #119079
    kerri3317
    Member

    What if the activation email is not going out??
    Admin profile viewing question is also still out there.

    modemlooper
    Moderator
    #118172
    Whitefox
    Member

    OK 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.

    #118127
    Whitefox
    Member

    I 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.

    enderandrew
    Member

    You 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.

    enderandrew
    Member

    The 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.

    Andrea 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.

    #117193
    @mercime
    Participant

    First, 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/

    #117150
    igeekout
    Member

    I 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?

    #117028
    igeekout
    Member

    Looks 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.

    #117026
    Andrea Rennick
    Participant

    they only need to copy/paste that info if for some reason the key in that URL does not show in their address bar.

Viewing 25 results - 751 through 775 (of 1,244 total)
Skip to toolbar