Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'activation email'

Viewing 25 results - 976 through 1,000 (of 1,244 total)
  • Author
    Search Results
  • #83660
    peterverkooijen
    Participant

    “What’s wrong with creating the user before the activation email is sent?”

    Because the (spam) account is still there, listed everywhere, even if it will never be used.

    #83653
    techguy
    Participant

    What’s wrong with creating the user before the activation email is sent? If it doesn’t get sent, then the user won’t be created and they’ll never be able to login since the user account won’t be activated.

    Of course, if you’re using the plugins that r-a-y mentions, then that’s a different story.

    #83652
    r-a-y
    Keymaster

    You have to activate your account via email by default!

    It appears that you’re using the BP Disable Activation plugin or some other plugin that does something similar.
    Can you confirm?

    #83456
    djsteve
    Participant

    Has anyone made any progress with this? Will we have buddypress checking for banned email domains soon?
    Will we have buddypress checking for banned domains upon registration and perhaps even again upon activation?
    Can someone please add the possibility to add *.info in a way that works
    I know this won’t stop all spam and splogs – but I am getting tired of deleting a dozen spammers every day that are mostly from the same dozen domain names that I have added to the block list. This would save lots of people hlaf the splog deletions, and that adds up to a lot of time saved.
    BTW – has anyone tested buddypress with TTC Spam Bot Registration plugin (https://wordpress.org/extend/plugins/ttc-user-registration-bot-detector/ )to see if there are any issues? I am guessing it may still be bypassed by buddypress even if it worked in WP?

    #82265
    techguy
    Participant

    @tober11 Thanks. It’s nice to hear. I figured if I was going to be building my project on the back of BuddyPress I should try to do my part to give back. I’m all in with BuddyPress, so you’ll see me around here for a while.

    BTW, this plugin is now release officially: https://buddypress.org/community/groups/bp-disable-activation/ and will be part of Welcome Pack 2.2 in the future.

    #82250
    Paul Wong-Gibbs
    Keymaster

    FYI, Welcome Pack 2.2 will include this functionality; I’m working with techguy on this.

    #81838
    tober11
    Member

    techguy …I’ll be looking forward to your progress on this. As a side note…I’ve enjoyed your contributions around this community. Kudos

    #80916
    eor
    Member

    I think a lot of it is because its considered spam by most email hosts just as gmail, aol, etc. Can someone help create a fix for this? There has to be a way to change the way the emails are delivered from Buddypress.

    Thanks,
    eor

    #80879
    dt borneo
    Participant

    the problem same with my buddypress, new register never receive activation code from administrator

    #80876
    Paul Wong-Gibbs
    Keymaster

    Hi
    No, Welcome Pack won’t let you create or change which email address the activation emails are sent to.

    #80875
    techguy
    Participant

    Nice find Zachary. I wouldn’t recommend changing that file since it will get overwritten when you upgrade BP. Instead just use the bp_core_activation_signup_user_notification_to filter to change it to your email.

    #80873
    zlamczyk
    Participant

    Figured this out, finally. Turns out that the file and function to modify was:
    wp-contentpluginsbuddypressbp-corebp-core-filters.php
    –>function bp_core_activation_signup_user_notification( $user, $user_email, $key, $meta )

    Isn’t it redundant to have two functions so similar to each other? Both the above function and
    wp-contentpluginsbuddypressbp-corebp-core-signup.php
    –>function bp_core_signup_send_validation_email( $user_id, $user_email, $key )
    are extraordinarily similar to each other. It’s kinda frustrating.

    I’d consider developing a plugin, but perhaps I’ll wait for the first release of WP 3.0.

    #80810
    ovizii
    Participant

    I have compared both the test server and the live server configs, disabled mod_security, checked different other settings and found NOTHING until I stumbled upon a pretty hidden error log of this client and there are a couple of different DB errors like [06-Jun-2010 10:46:25] WordPress database error Unknown column 'spam' in 'where clause' for query SELECT COUNT(ID) FROM wp_users WHERE spam = 0 AND deleted = 0 AND user_status = 0 made by require, require_once, do_action, call_user_func_array, bp_core_do_catch_uri, load_template, require_once, bp_get_total_member_count, bp_core_get_total_member_count

    so its definitely a wordpress issue and not a server issue. here is a bigger part of the error log, just in case anyone has some feedback on this: http://pastebin.com/tx5gaEWG

    gettign weirder and weirder:

    the test site has these fields inside the wp_users table:
    Full Texts ID user_login user_pass user_nicename user_email user_url user_registered user_activation_key user_status display_name spam deleted

    the live site these:
    Full Texts ID user_login user_pass user_nicename user_email user_url user_registered user_activation_key user_status display_name

    After adding the two missing fields: spam and deleted, all is good :-)
    Does anyone know when those fields were supposed to be added? I which WP version? or does BP add them? I’d like to figure out where this went wrong…

    #80721
    eor
    Member

    Any closer to getting this to work with mu?

    Thanks,
    eor

    #80714
    techguy
    Participant

    Yep, I just tried the Welcome Pack and you can remove the link and change the email that way and it sends to the user.

    So, then you can just manually pull the activation key from the database using PhpMyAdmin or something and append it to a url like this: http://yourdomain.com/activate?key=KEY-FROM-DATABASE

    #80713
    techguy
    Participant

    Since you’re using WPMU, BP just basically calls the WPMU user creation (see lines 320-321 in bp-core-signup.php). So, you’re going to have to mod the WPMU signup functionality to get the emails to send right.

    Another temp option is to try the Welcome Pack plugin which allows you to modify the activation email that users get (I haven’t tried to take the link out, but it seems possible). That would solve the email they get.

    Then, you could build a plugin to activate the users. Until then, you can just copy the activation key out of the database using phpmyadmin and browse to the URL yourself. Far from ideal, but the Flintstone way if you’re in a time crunch and need to get by until you can get a plugin.

    #80677
    techguy
    Participant

    Andy’s solution was for WP, but it didn’t work for WPMU. For WP, there’s this plugin: https://buddypress.org/community/groups/bp-disable-activation/ We’ve been working on an MU solution in this thread: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/i-would-like-to-disable-email-activation/?topic_page=1&num=15) However, haven’t quite gotten it to work right.

    #80668
    rich! @ etiviti
    Participant

    i don’t have the thread on hand but andy posted up a solution with filters/hooks to disable the email and change the user status

    #80667
    Mark
    Participant

    Just subscribing because I’m also interested in a solution to this.

    #80509
    Van Murray
    Participant

    @zlamczyk: I think we are trying to work on the same thing.
    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/disable-activation-email/

    I am getting spammed (bad) and they are simply using the activation email to approve themselves. My thought was just do a manual approval to either “activate”, “send activation email” or “delete from wp-signup”.

    I have modified manual member approve for BuddyPress so I can see the signup table and manually approve members.
    http://mattkern.com/wpmu-manually-approve-new-members-on-local-install/

    I just need to stop the automatic sending of the activation email. Do you know how?

    I’ve simply tried commenting out the following line in wp-core-signup.php to test, but it’s not working.
    wp_mail( $to, $subject, $message, $message_headers );

    This is the function; but for some reason the activation email still goes out.

    #80470
    techguy
    Participant

    This thread has the closest solution I’ve found: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/i-would-like-to-disable-email-activation/?topic_page=1&num=15 Still has a couple issues to workaround though.

    Van Murray
    Participant

    @hnla and @boonebgorges: I found this plugin a while back and modified it to work with BuddyPress. Let me know if you need it still.

    Anyone know how to stop sending the activation email? I don’t want to disable the activation function; I just want to stop sending the email automatically. I want to selectively send it. I figure I would just add this function to the manual approve plugin so I could either:
    Manually Approve
    Manually Send Activation Email
    Delete the Signup

    I’m getting killed with spam users (that are easily identifiable)
    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/spam-blogs/

    #80410

    In reply to: Spam Blogs

    Van Murray
    Participant

    Also; each “blast” of spam users/blogs appear to come from different IPs, but the username always has a 7 digit number pattern after a random name. They all appear to come from “.info” email registrations.

    These registrations are bypassing the public registration form requirements somehow, but I believe they are legitimately activating their account (since I’ve had delays after disabling the registration form). There are entries in both _users and _signups tables that match.

    Hope this helps if anyone else is having this issue. I’m open to any temporary solutions for this particular pattern, but more importantly is there a good way to solve this long term?

    Is there a way to manually approve members? Maybe some step in between that would allow a manual send of the account activation email?

    ok guys. figured it out. this killed me today. godamighty.

    needed somebody to send me link to this resource:

    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/email-notification-not-working/?topic_page=2&num=15

    anyway, there’s some kind of mail issue for ppl hosted at bluehost. you have to get the Mail From plugin:

    http://code.andrewhamilton.net/wordpress/plugins/mail-from/

    and then everything works fine.

    just heads up for ppl that have this issue in the future.

    any other suggestions?

Viewing 25 results - 976 through 1,000 (of 1,244 total)
Skip to toolbar