Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'activation email'

Viewing 25 results - 1,026 through 1,050 (of 1,225 total)
  • Author
    Search Results
  • 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…

    #74190
    Shanni Einer
    Participant

    In all honestly, I wouldn’t recommend disabling email verification. In fact – you actually should not only use that, but use it with Gravatar to double verify members. My BP communities are brand new, in dev stages right now. I’ve already been subjected to spammers which is why I support use of Gravatars – because not only will your users be verified in your community, but globally and this is a big step in spam prevention.

    If you want to customize the registration page, many of them can be through your theme framework. However, too much code will slice your page & overall framework right down the middle and break your site.

    #74132

    Does this also work with the BP Compatibility plugin or would there be an extra step? I have no problems getting this hack to work with single user WP + BP. However, when I try it with WPMU, it doesn’t work. I thought perhaps it was due to the fact that I’m using the Compatibility plugin in conjunction, but even when that is deactivated the hack isn’t working. Thoughts?

    rich! @ etiviti
    Participant

    sometimes it depends on your host too. emails from my default bp install on dreamhost tend to make the junk/spam folder (yahoo, gmail, etc)

    liveview
    Member

    I have the same issue. Tried installing plugins, changing email to a “legit” one rather than the standard noreply@xxxx.xxx, tried sending through SMTP rather than mail()

    Nothing works.

    Most likely Hotmails spam filter reacts to the activation link, that would be my guess at least.

    #74090
    UengI
    Participant

    I have a lot of problems with BuddyPress user registration in general. It seems:

    – no emails are sent to the user for activation

    – there is no “forgot password” feature

    – there is no ability to (re)send the user an activation link, either from the user or the admin’s area.

    On the emails, when I create a new user or blog via the admin area, I get a notification email, so it’s not a setup issue with the mailserver. The server is my localdomain/localhost dev box anyway. No webhost involved.

    Ugh this may seem a small part of BP % wise but it seems without these features it’s really not usable. What is the deal? Can this fundamental stuff really be missing/so buggy?? It’s hard to believe.

    Tore
    Participant

    Extremely interesting but I’m a bit hesitant to do modding that needs to be at core. I’m hoping that Andy_P will see this! This have to get to core if it work! I’ll check the trac.

    I’ve tried to sign up for your test website but I’m not getting any activation email.

    #73799
    21cdb
    Participant

    I had the same problem a few seconds ago. A newly registered member didn’t recieved the activation email but was listed in WordPress>Backend>Users

    I asked the user to check spam inbox twice but there was stil no activation mail :)

    It would be great if admins could manually acivate such users or resent the activation email.

    #73769
    Nick Watson
    Participant

    I’m getting several spammers signing up, I have the Anti Splog plugin (here) and the reCAPTCHA is turned on.

    Email Activation is turned on.

    AND I’ve blocked all of the emails on this list (here)

    HOW ARE THEY GETTING THROUGH!

    ssanime
    Member

    I have the same problem. users can register but they don’t receive a activation email and cannot login.

    Hugo Ashmore
    Participant

    There was a thread which touched on the subject of plugin activation, I hadn’t really clearly understood the difference between ‘Site Wide’ and basic activation, or why sometimes activating a plugin using the plain link on left side actually activated the plugin sitewide placing the plugin into the list at the top of the page reserved for sitewided plugins that users cannot deactivate .

    There is a configuration option in the plugin primary file hat should ensure that the plugin is activated sitewide regardless, it doesn’t always work and must be only half the issue, but I raised that on the other thread.

    My approach to BP plugins is NOT to upgarde them automatically but manually deactivate, remove old folder to safe area outside doc root; upload new plugin reactivate using sitewide link, even though most BP plugins should or even ought to activate sitewide; there’s no reason for any general member to have access to BP or any of it’s plugins, and I don’t want to chance to having people access and deactivate a BP plugin

    Hugo Ashmore
    Participant

    There was a thread which touched on the subject of plugin activation, I hadn’t really clearly understood the difference between ‘Site Wide’ and basic activation, or why sometimes activating a plugin using the plain link on left side actually activated the plugin sitewide placing the plugin into the list at the top of the page reserved for sitewided plugins that users cannot deactivate .

    There is a configuration option in the plugin primary file hat should ensure that the plugin is activated sitewide regardless, it doesn’t always work and must be only half the issue, but I raised that on the other thread.

    My approach to BP plugins is NOT to upgarde them automatically but manually deactivate, remove old folder to safe area outside doc root; upload new plugin reactivate using sitewide link, even though most BP plugins should or even ought to activate sitewide; there’s no reason for any general member to have access to BP or any of it’s plugins, and I don’t want to chance to having people access and deactivate a BP plugin

    #72520
    danbpfr
    Participant

    I found this mail sended in 2007 on wp-hackers, while searching for error message stuff at plugin activation

    It seems to be be already the same situation in 2010… so devs, you know…

    wp-hackers] Plugins : return proper error on activation faliure

    Omry Yadan omry at yadan.net

    Fri May 18 07:35:15 GMT 2007

    * Previous message: [wp-hackers] List digest with unprotected emails

    * Next message: [wp-hackers] Re: WordPress 3

    * Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

    Some complex plugins may fail during activation (creating database

    tables or what not).

    currently there is no way for plugins to return an error signal + error

    message in such cases: only thing they can do is to print the error.

    this is problematic as the error does not fit well into the wordpress

    admin page, and can also cause problems if for some reason the someone

    tries to set an http header after the plugin was activated.

    I suggest that we allow plugin to return error message back to wordpress

    on activation.

    #71754

    Could someone please kindly turn this into a plugin?

    Gianfranco
    Participant

    @Matt Thanks, I appreciate the suggestions.

    About the clearing of the fields it’s somethng I planned to do, but didn’t think about the registration login form after the activation of an account.

    Otherwise, I’m glad you’re a Cure fan! It’s cool you registered to the site.

    Mike Pratt
    Participant

    Gian,

    Do you have a diff slug set for registration?

    I am a massive Cure fan btw. Love the name of your site. I’ll never forget seeing them, pave fainted like Robert Smith, in Leipzig (What was then) East Germany right after the wall came down in 1989.

    Mike

    ps On your site, after activation, there is no login form present. Also, you aren’t clearing your username/pw placeholder text so I have to select all and clear myself when entering the login info

    #71082
    r-a-y
    Keymaster

    Just tried registering on your site and it works.

    Received activation email and was able to login and post an activity update.

    Don’t see any errors or problems.

    #70925
    r-a-y
    Keymaster

    BuddyPress isn’t sending out emails (eg. activation emails, email notifications)

    This appears to be a problem with certain web hosts (Bluehost primarily).

    Members of the BP community have had success using the “Mail From” plugin:

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

    Try this and reply in the following forum thread if it doesn’t work:

    https://buddypress.org/forums/topic/email-notification-not-working

    #70388
    brianterry10
    Member

    I totally agree with this. It’s quite confusing. I think more than a rewording of the text is needed.

    Perhaps you can give people a series of simple steps they should go through to complete setting up their membership?

    Step 1: Activate your membership

    You give them instructions to visit their email account then click on the activation link in the email.

    When they click on the activation link they’re taken to the next step page…

    Step 2: Customize your avatar

    They do this then press the button to complete, then they’re taken to the final step…

    Step 3: They’re then directed to the activity page, at the top of this page could be a message to tell them their account is now active and they can start posting.

    This 3 step process gives people a clear path to follow taking them to the page where they can then see what’s going on and begin taking part.

    Each step page is nice and simple.

    What do you think?

    #70351
    djsteve
    Participant

    I have similar issues, and I have been pondering possible reasons this occurs.

    I take the time to copy domain names that spammers com from, and add them to the mu-options as domains that are not allowed to create an account. I find that even after doing this, sometimes I get several more members with those email addys.. sometimes not.. the past week has seen a lot.

    There was a time a few months ago when it was a known bug for this, but I am guessing it’s been fixed in mu by now – (I’m using 2.92 I think).

    This is what I am thinking MAY be happening, and I’d love a way to update MU to close this loophole, if indeed it exists.

    I am thinking that the spammers actually created a dozen or more accounts, and only activated one at a time. I am thinking that perhaps by the time I add the bad domain to the list of no-signups-allowed, they have already created several others – and simply activate them later.

    If this is true, I would love for MU / Buddypress to do a check, when a member actually does this activation, and tell them sorry – the email domain is now on the bad list, and they can not activate.

    Not sure if this is true, just a thought.

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