Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'activation email'

Viewing 25 results - 1,126 through 1,150 (of 1,893 total)
  • Author
    Search Results
  • snowlas
    Participant

    My problem was I was running a plugin that was generating a key as well as buddypress and WordPress wanted the key generated by the first plugin, not the key from the activation email sent out by buddypress.

    You can read about it here: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/activation-email-key-doesnt-work-i-may-have-the-fix/

    it’s lengthy, I know, but I hope it puts you in the right direction if it doesn’t work.

    snowlas
    Participant

    So here is the problem and MY solution. Might not work for you.
    What I’m using: WP 3.3.1, BP 1.5.4, & CIMY Extra Fields 2.3.7

    I register users from my WordPress page, NOT my BuddyPress page. So not myurl.com/register BUT I AM USING myurl.com/wplogin.php?action=register

    What was happening: CIMY generates a key before BuddyPress generates a key. THEN, Buddypress would send out its own email, but WordPress is looking for the CIMY key to activate the user.

    Also, when BuddyPress was sending out the activation email from bp_core_filters.php, NOT bp_members_signup.php. It seems that bp_core_filters.php does not seem to have the function to activate a user, but bp_members_signup.php does.

    When I would register users from my BuddyPress page instead of the WordPress page, the activate email would work just fine. The email was also being sent from bp_members_signup.php, NOT bp_core_filters.php. How do I know? I altered the email message in filters.php, but then got a different email when I registered through BuddyPress and not WordPress.

    Okay. So what did I do?

    bp_core_filters.php was overriding my CIMY activation email. When I disabled BuddyPress, I was able to register users through CIMY and my activation link even said ‘?cimy_key=838494040383830209’ (not a real key, obviously) and not just ‘?key=8393834929282’

    Before you do this, save a clean copy of bp_core_filters.php somewhere different, so if this doesn’t work for you, you can put the old file back in without any problems.

    I went into bp_core_filters.php and DELETED lines 224-255. This starts with:

    ?function bp_core_activation_signup_user_notification( $user, $user_email, $key, $meta ) {

    $activate_url = bp_get_activation_page() . “?key=$key”;
    $activate_url = esc_url($activate_url);
    $admin_email = get_site_option( ‘admin_email’ );

    if ( empty( $admin_email ) )
    $admin_email = ‘support@’ . $_SERVER;?

    Then it ends with, on line 255

    ?add_filter( ‘wpmu_signup_user_notification’, ‘bp_core_activation_signup_user_notification’, 1, 4 );?

    Delete all code between lines 224 and 255. If you have WPMU, above that is the email function for WPMU, in lines 181-222.

    Why am I using CIMY and not just extending the profile fields on BuddyPress? I needed to collect address data. It was a requirement to collect address data from the registration. But, it would then display publicly on the profile in BuddyPress. I couldn’t have that. I just wanted the data in WordPress, hidden. Thus, I’m using CIMY.

    Also, I use CIMY and hide the buddypress admin bar to strangers. I use the plugin login logout and place the widget in a sidebar to direct to the correct login screen, not the buddypress login screen.

    Check it out: http://mediabridges.info

    BuddyPress is running but is not handling any registration, activation, etc. But users can still use it.

    #131041

    In reply to: No activation emails

    aces
    Participant
    #28140
    Colinbrowne
    Member

    Hi, I’m new to buddypress. Can anyone tell me why no activation emails are being sent when I try register a new user on the site?

    martinavive
    Participant

    Hi
    I have this theme which is buddy press compatible http://themeforest.net/item/reviewit-review-wordpress-buddypress-theme/109666
    Problem is when people sign up i get this message…
    Activate your Account

    Please provide a valid activation key.
    Activation Key:

    Even when you enter the activation key from the activation email it does not do anything and the user account is active and the can carry on and use all buddypress features as normal

    How do i Remove this page?
    Ammend the text
    or fix this error please

    martinavive
    Participant

    Hi
    I have this theme which is buddy press compatible http://themeforest.net/item/reviewit-review-wordpress-buddypress-theme/109666
    Problem is when people sign up i get this message…
    Activate your Account

    Please provide a valid activation key.
    Activation Key:

    Even when you enter the activation key from the activation email it does not do anything and the user account is active and the can carry on and use all buddypress features as normal

    How do i Remove this page?
    Ammend the text
    or fix this error please

    snowlas
    Participant

    I want to bump this because I think I’m very close to finally solving this for many of us, but it’s going to need someone who is better at reading PHP or understanding the BP Codex.

    My activation links work if I register from BuddyPress, but not if I register from WordPress. Is everyone else doing the same?

    Here is a link to the new thread in hopes to solve our problem.
    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/registering-and-email-activation-links-not-working/

    snowlas
    Participant

    I think I am close to solving the non working Email activation list, but can an experienced developer give me the answer?

    This is my previous thread on the issue: http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/activation-email-link-does-not-copy-codekey-into-the-box/

    This is the thread many of us reported the same problem: http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/wp-3-3-1-bp-1-5-4-user-activation-link-does-not-work/

    Here is my problem. Activation emails do not work, even when copying and pasting the key into the activation box. I am running BP 1.5.4 and WP 3.3.1.

    Scenario I have on my website: Users register on the WordPress Register page, not the BuddyPress register page.

    They are sent an email, they click activate and are directed to a box to place a code even though there is no code.

    I was able to alter the email that was sent out to include the key in the email. Copying and Pasting does not activate a user.

    I also changed the email to include a link to the reset password page, when users hit get new password, it says they don’t exist as a user.

    NOW, when I just registered from the Buddy Press register page, I got an email with a working activation link and it activated the account. I want to make note that even though I changed the email going out from the bp_core_filters.php file and I sent out modded emails before, this time the modded email content DID NOT go out. The modded email is still there in bp_core_filters.php, but the email I got was similar to the original emails. All it had was a link in it. Thus, the email that was sent out came from a different part of the BuddyPress plugin. And this email WORKS.

    I need to register from the WordPress side because I’m using CIMY to collect address information that I don’t want to be part of the public BuddyPress file.

    Can anyone offer insight?

    #28070

    I am wondering the best way to customize the fields on the registration page.

    I want to limit the fields to a little as possible to encourage registrations. As it is now, including all profile fields on the registration page is kind of daunting as a new user with no investment in the site yet, and not totally necessary for sign up. (at least for me)

    My intention is to have them fill out the necessities and then on activation be sent to their profile and be encouraged to fill in the rest. That part I’m good with. It’s just the customizing of the form I am having some trouble with.

    Ideally what i’d like to do is have only

    `
    Full name
    user name
    email
    password (no confirm password)
    `

    I’ve taken a look at the register.php file but I’m not totally sure what’s going on here.
    If i remove any required fields, say the confirm password, validation errors occur, due to the password not being entered twice. (which makes sense, but how should i properly deactivate this?)

    I know there are some plugins that can kind of maybe sort of do this with some figity trickery but that doesn’t help me understand whats actually going on.

    @mercine, i have buddypress default theme and have de-activated all plugins except Suffusion BuddyPress Pack. i have the same problem as the guys above. (same wp and bp versions as above.) if i have understood correctly, in the email i received, the string

    http://www.mywebsitename.org/activate/?key=9f664b72a0b703fe63a4f61fc2066175

    contains the activation key at:

    9f664b72a0b703fe63a4f61fc2066175

    but when i paste this in the Activation Code box, i stay on the same page and nothing happens.

    thanks, regards
    SP

    snowlas
    Participant

    Mark, I just downgraded to 1.5.0 and my activation links are still not copying the code into the activation bar.

    I’m back at 1.5.4 now.

    I would like this solved as well. It seems to be a problem I’m seeing pop up frequently.

    Is anyone else also running these plugins:
    CIMY
    Membership from WPMUDev
    Email Login
    Ultimate Facebook from WPMUDev
    Event Espresso

    #130750
    aces
    Participant
    #28022

    Hello. I found out that somehow the email function of the WordPress doesn’t work with BuddyPress. For example, notification for new comments on posts come to my email from address noreply@www.mydomain.com .
    But when new users want to register for my site, they don’t receive activation email. I don’t know how to isolate my problem. My URL is http://www.screenshotquiz.com

    #28013
    jongjin
    Member

    Is it possible to create a 2 step signup?

    Example

    – First only username , email , password and name is asked.

    – Second relatting to location , gender , age etc..

    Would be great if the user is redirected from the activation email they receive to a page that ask for additional info before activation is 100% complete. Or any other possible way…

    Don’t know if it is possible?

    snowlas
    Participant

    Thanks. It’s probably the Membership plugin. Which isn’t possible to keep deactivated. But there’s a way around all of it, so that’s good.

    Any other advice from others?

    9087877
    Inactive

    More than likely it is a plugin. Try disabling each plugin one by one and keep registering and trying the activation until you narrow it down to the culprit. I had the same issue once and the culprit was the “Disable WordPress Updates 1.2 plugin.”

    snowlas
    Participant

    Nor does it provide a text code in the email to copy and paste.

    Example link that was sent out to users after importing them using CIMY’s User Manager: http://mediabridges.info/activate/?key=1a3a1499d5463bcc&e=1

    The key is in the link, but it doesn’t place that key into the activation box. But apparently, it very much still activates the account. Because then a user just needs to reset their password and they’re in.

    I’m using WordPress 3.3.1, BuddyPress 1.5.4 and WPMU Dev’s Membership plugin.

    #128093
    deedles916
    Member

    okay… so last thing I checked in the General Settings was that I still had the “www” in the path. So I removed it and now ALL HAIL THE KING… I get an activation email!

    #128091
    deedles916
    Member

    stupid thought… but possible the issues are because this is installed and running from a sub-directory??? Not the main route public_HTML

    #130631
    deedles916
    Member

    Also… activated the Default BuddyPress theme… still nothing! weeks of work down the tubes! Please can someone help… can give admin login.

    #130628
    deedles916
    Member

    okay deactivated every plugin except BuddyPress. Am using BP-Mag theme built for BuddyPress…

    no activation email still! I am screwed!

    #130627
    deedles916
    Member

    I am having the same issue. WordPress 3.3.1 and BuddyPress 1.5.4

    Added the custom code from above to the functions.php – did not help. Cannot get the activation email to get sent and I have tried 15 different REAL email accounts including comcast.net, verizon.net and yahoo.net.

    After Registration… it lands me on the Registration Complete message… tells me an activation email is waiting for me. But also have the Gravatar Upload available. If I try to upload anything, it just bumps me out, because I have NOT activated yet.

    I am STUMPED! I will try deactivating ALL plugins but I am down to the bare bones now.

    Someone please help… I am weeks over due and I thought I was just about ready to launch… now this!

    Thanks!

    #130611
    bselfors
    Member

    another great question, thanks for the support btw. Ah where do people log in? I didnt see a widget, and whats the purpose of an activation page if the email link directs you to successful activation? Thanks

    #130514
    Paul Wong-Gibbs
    Keymaster

    Can you share an example link from the emails?

    #130459
    Sal
    Participant

    Yes the https://wordpress.org/extend/plugins/mail-from/ plugin changes the from mail with a user or a specified email as aces said above.

    Seems my issue was I installed a Private Community plugin did not even activate it and it created a problem with buddypress sending out the email

    As soon as I removed the plugin the issue was resolved. I need only add my categories, social login and bingo we are up and running.

    Love WordPress :)

Viewing 25 results - 1,126 through 1,150 (of 1,893 total)
Skip to toolbar