Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'activation email'

Viewing 25 results - 1,626 through 1,650 (of 1,893 total)
  • Author
    Search Results
  • #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!!!

    #10781
    kevinlucier
    Participant

    I have BuddyPress 1.2.3 running perfectly under WP MU 2.9.2. Only issue is on Registration. The activation email never goes out. All other email works for adding friends and other events.

    Any help would be appreciated.

    Thanks!!!

    Kevin

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

    Rian Rietveld
    Participant

    Hi,

    I have a wpmu 2.9.2 site with buddypress 1.2.2.1 (http://www.mypet.nl, sorry all in Dutch, and yes, the design is crap).

    Registration works fine, just the activation mail is not received by users with a hotmail or live account.

    Other email addresses get the mail, just not the hotmail/live addresses.

    No, im not on the blacklist

    Yes, I Installed the plugin Mail From.

    Below I copied the source code of the mail.

    Can anyone please help me with the following questions:

    Is this a WPMU issue or a BuddyPress issue?

    Or am I doing something wrong?

    Or is Microsoft just way to critical on mail?

    Kind regards, Rian

    Return-Path: <apache@epsilon.monshouwer.eu>

    X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on theta.monshouwer.eu

    X-Spam-Level:

    X-Spam-Status: No, score=-4.4 required=4.0 tests=ALL_TRUSTED,BAYES_00

    autolearn=ham version=3.2.5

    X-Spam-Relay: _RELAYCOUNTRY_

    Delivered-To: info@rrwd.nl

    Received: from epsilon.monshouwer.eu (epsilon.monshouwer.eu [IPv6:2a02:990:100:1:0:500::])

    by smtp.monshouwer.eu (Postfix) with ESMTP id 84F0C1FA0006

    for <info@modevakschool.net>; Tue, 6 Apr 2010 12:22:14 +0200 (CEST)

    Received: from epsilon.monshouwer.eu (localhost.localdomain [127.0.0.1])

    by epsilon.monshouwer.eu (8.13.8/8.13.8) with ESMTP id o36AMEC4002687

    for <info@rrwd.nl>; Tue, 6 Apr 2010 12:22:14 +0200

    Received: (from mypet@localhost)

    by epsilon.monshouwer.eu (8.13.8/8.13.8/Submit) id o36AMEc1002686;

    Tue, 6 Apr 2010 12:22:14 +0200

    To: info@rrwd.nl

    Subject: [myPet] Activeer je account

    Date: Tue, 6 Apr 2010 10:22:14 +0000

    From: myPet <info@mypet.nl>

    Message-ID: <1c8ee3ca00ce5c7c39bba2fb3cdcac3a@www.mypet.nl>

    X-Priority: 3

    X-Mailer: PHPMailer (phpmailer.sourceforge.net) [version 2.0.4]

    MIME-Version: 1.0

    MIME-Version: 1.0

    Content-Transfer-Encoding: 8bit

    Content-Type: text/plain; charset=”UTF-8″

    X-Virus-Scanned: clamav-milter 0.96 at theta.monshouwer.eu

    X-Virus-Status: Clean

    Bedankt voor het registreren! Om je account te activeren kun je op onderstaande link klikken:

    http://www.mypet.nl/activate?key=e875a5e7173e855f

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

Viewing 25 results - 1,626 through 1,650 (of 1,893 total)
Skip to toolbar