Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'activation email'

Viewing 25 results - 1,026 through 1,050 (of 1,244 total)
  • Author
    Search Results
  • #76528
    Bond James
    Participant

    I just installed BP 1.2.3 over WP 2.9.2 and have the same initial problem…. Activation Mails are not being sent… Anyone knows how to solve it?

    #76470
    techguy
    Participant

    You might want to join this group for part of what you’ve requested (the admin resend of activation emails/activating manually): https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/over-1000-not-activated-users-what-do-you-suggest-we-do-with-them/

    Seems like he could add the redirect to the plugin as well. I don’t think it would be too hard.

    #76438
    Hollosch
    Participant

    Had someone turned this into a plugin ?

    #76436
    Hollosch
    Participant

    Hi, is there a solution for this problem ? I had the same problem.

    kriskl
    Participant

    thanks for your advice and replies
    my fear re being blacklisted was a bit exaggerated, I have checked lost lists and our domain/ip is OK (only one place has one blacklisted)

    in April overall for every 5 users, 1 did not activate the account
    I am sure at least half of them are not spammers, I had a look at their email addresses,
    so, I can only guess, users are not computer savvy.. and did not look at their junk email box for activation email etc..
    I have change the form, so it tells them now to check junk folders. maybe this will help!

    something else occurred to me
    where do I change the default email address the activations email are sent from?
    maybe this will help and emails won’t land in spam folders..

    kind regards
    Kris

    #76187
    Patrick
    Participant

    Thanks

    Hugo Ashmore
    Participant

    This plugin might also be worth a look?

    http://epicalex.com/new-user-email-set-up/

    I originally used this to get round a problem of needing to manually add some new users to the system but didn’t want emails/activations being sent out immediately. It provides two very customizable sections one sent to admin one to new user, I simply swapped it round so that admin received the sign up email to a specially set up email account and the user got sent a “changes are afoot you will receive your login details shortly” type message, worked quite effectively.

    #76168
    Paul Wong-Gibbs
    Keymaster

    Memory exhausted would explain why things suddenly stop working. Try putting this in your .htaccess file:

    define('WP_MEMORY_LIMIT', '64M');

    If that doesn’t seem to work, contact your host and ask them to do it for you

    techguy
    Participant

    You don’t want to just activate random accounts. You might be activating a bunch of spam accounts for emails that don’t exist.

    Seems like these are the functions you’d need:
    -Resend activation email (possibly customize the email to admin’s desires)
    -Manual activation for individual users (for those that contact you directly about activation)
    -Clear users that haven’t activated (filtered by date)

    Hugo Ashmore
    Participant

    Boone there is this plugin which is really for dev setups where passing emails through the dev network is awkward so allows you to register a user normally then go into backend and manually approve using the activation id

    WPMU Manual Member Approve:
    http://mattkern.com/wpmu-manually-approve-new-members-on-local-install/

    Would you believe though I just tried to run it on my local site and it’s broken! at least it’s throwing an undefined function error bp_page_title()

    Haven’t time to look into that but it doesn’t look to much of an issue.

    Of course this doesn’t get round the issue of letting those users know they have been activated and not really sure one wants to simply activate a bunch of accounts when the users are never going to know about it.

    Of course once activated and once you have established you are sending emails correctly you might be able to work some means of adding everyone to a group and posting an update to that group that will send a notification out to email addresses?

    #76155
    Patrick
    Participant

    @DJPaul I just got my web host to send me the log. It looks like I was getting a lot of memory size exhausted errors and a database table error wp_2_options’ doesn’t exist. I am guessing that I need to upgrade to a VPS. Not sure about the database error however. Any feedback?

    kriskl
    Participant

    Yes! Please

    This is really the essentials when it comes to registration.

    of course, my fear is that our email address has been blacklisted by some servers, so there is probably nothing we can do, but
    many other users simply.. have no idea they have to activate anything, and may have missed the email or the activation ,ink has already expired when they found it..

    kris

    #76151
    techguy
    Participant

    This problem is so host specific it’s hard to say. However, if you’re on bluehost, a few solutions have been posted in this thread (read both pages): https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/email-notification-not-working/?topic_page=1&num=15

    Boone Gorges
    Keymaster

    Signups (including non-activated users) are stored in wp_signups table. I have looked briefly but have never found a plugin for WP admins to manage these signups (activating accts from the Dashboard, resending activation emails, etc). Hard to believe, actually, as it seems like this is an area of great need.

    Maybe this is something I’ll write myself, as I’ve had need of such a thing on multiple occasions and I’ve usually had to dig directly into the db to find the activation keys.

    kriskl
    Participant

    that’s the thing, I don’t want to loose them..

    what if the activation email was in their junk folder or never reached them..

    #76113
    Paul Wong-Gibbs
    Keymaster

    Do non-BuddyPress specific emails get sent OK from your WordPress install? i.e. disable BuddyPress and get WordPress to send you a password reset email, or something.

    #76070
    Paul Wong-Gibbs
    Keymaster

    White page usually means a PHP error. What’s in your web server error log?

    Ruth Maude
    Participant

    the hack adds “the new users’ e-mail address to the e-mail with the activation link. This way you’ll know which activation link belongs to which user.” This is really needed!

    Is there another line to add to functions.php that will add the email address?

    Actually what we need is a plugin that creates a pending membership panel in the admin so you can go in and active or mark as spam… just like comments!

    #75181

    In reply to: Spammer Error

    gaysurfers
    Participant

    I have the same problem. 50% of my users are marked as spammers
    I think they don’t get the activation email, or it gets thrown in their SPAM folders..
    It would be nice to have a functionality in WP to send them another email with activation link..

    Ruth Maude
    Participant

    THANK YOU! THANK YOU! THANK YOU!

    So all I had to do was add the following two code snippets to my /wp-content/plugins/buddypress/bp-themes/bp-default/functions.php file and both these issues are fixed! Next step will be upgrading to php5.

    /*redirect activation email to admin for approval*/
    function my_redirect_activation_email()
    {
    return get_site_option( “admin_email” );
    }
    add_filter(‘bp_core_activation_signup_user_notification_to’, ‘my_redirect_activation_email’);

    /*disable blog signup for non logged in member*/
    add_filter(“wpmu_active_signup”,”bpdev_check_current_users_blog”);
    function bpdev_check_current_users_blog($active_signup){
    global $current_user;
    if( !is_user_logged_in() )
    return “none”;
    else
    return $active_signup;//if the user is logged in, do not change the site policies
    }

    r-a-y
    Keymaster

    @dandelionweb


    function my_redirect_activation_email()
    {
    return get_site_option( "admin_email" );
    }
    add_filter('bp_core_activation_signup_user_notification_to', 'my_redirect_activation_email');

    Add this to wp-content/plugins/bp-custom.php or your theme’s functions.php file.

    #74768
    freido
    Participant
    #74757

    In reply to: change e-mail text ?

    r-a-y
    Keymaster

    Ahh okay, Erich! Thanks for the extra details.

    It could be an issue with the email address that the activation email is sending from.

    By default, the activation email tries to use the admin email option in WPMU.

    If that isn’t set, it uses something like:

    noreply@domain.com.

    Which could be causing the activation email to go to the spam folder.

    Try using the following plugin to set the email address:

    https://wordpress.org/extend/plugins/mail-from/

    #74544
    kevinlucier
    Participant

    I am having the same problem, no activation email.

    Using BP 1.2.3 and WP MU 2.9.2

    HELP!!!

    #74210
    ousep
    Participant

    Just to clarify, I’m not in favour of disabling email activation, either. The spam you’d be getting would kill your site.

    However, the site I was doing this for does not allow users to post status updates in the conventional form. The site is an anonymous image sharing site. Users need to be registered to submit an image, but they needn’t be registered as themselves. Every user has the option of using [username]@domain.ext as their email address if they choose to stay anonymous.

    Status updates are replaced by img tags to the uploaded image. Yes, they could spam in activity comments, but I guess that’s a risk that had to be taken. Until someone figures out how to use akismet on those comments too…

Viewing 25 results - 1,026 through 1,050 (of 1,244 total)
Skip to toolbar