Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'activation email'

Viewing 25 results - 1,326 through 1,350 (of 1,893 total)
  • Author
    Search Results
  • #113144
    JamieWade
    Member

    Yes I had the same problem. It appears the activation link is ONLY being sent to people with GoogleMail accounts.

    #113118
    JamieWade
    Member

    I also experienced this problem. It seemed that the e-mail’s were only being sent to Google Mail Accounts. To temporarily resolve this I just turned account activation off.

    #113105

    ok try this :

    use this plugin to manually active users that are not activated yet : https://wordpress.org/extend/plugins/wp-activate-users/

    and use the below code in your functions.php .to disable email activation.

    function disable_validation( $user_id ) {
    global $wpdb;
    $wpdb->query( $wpdb->prepare( “UPDATE $wpdb->users SET user_status = 0 WHERE ID = %d”, $user_id ) );
    }
    add_action( ‘bp_core_signup_user’, ‘disable_validation’ );
    function fix_signup_form_validation_text() {
    return >false;
    }
    add_filter( ‘bp_registration_needs_activation’, ‘fix_signup_form_validation_text’ );

    #113104

    Ok it must be the activation because the number doesnt change with the filter.. Is there a way to re-send an activation email? How can I send this or where can I tell people to request it to be resent?

    Also, is there a way to change the registration so they dont have to activate it via email? I cant’ see the setting anywhere

    #113103

    Firstly check your filter, choose alphabetical order and see if all members show, and also if your site require email activation, you will see some members under manage users but not in members directory because their email is not verified yet. hope this will help.

    regards

    #112640
    ARHistoryHub
    Participant

    I’ll try to help a little….
    1. Buddypress by default sends an email to user for activation. Your theme may not be pulling the “ and all the code thereafter. Check to see if switching to buddypress default fixes that.

    2. Yes you can create your own login page. The easiest was is using a plugin like Theme My Login, though you could always do your own custom stuff.

    pnerger
    Member

    I also had this problem and went through a deep analysis.

    The issue stems from the fact that Bluehost requires that the email be sent from an account that exists on the system. They do this as an anti-spam technique and they require this even if the mail is originating from within the system.

    Enter WordPress. PHP uses a mail function mail(). WordPress maps this to wp_mail() and pretty much everyone uses the wp_mail for the plugins within WordPress. This makes sense as it allows customization of WordPress mail at a relatively low cost of performance.

    Enter Buddypress. Buddypress places a filter upon wp_mail() such that all email originate from the user ‘noreply’ on the domain such that end users don’t reply to the notifications. Sounds cool.

    But remember that Bluehost does not allow email to be sent from non-accounts and that’s the catch.

    Using a foreign SMTP does not work for Bluehost blocks those ports. Using local SMTP will work but you need to provide the right setup and credentials. Finally, using mail-from plugin works since it filter’s the Buddyhost filter changing the email from address back to a valid Bluehost email account.

    Hopefully, this explains what is happening and you can choose which strategy you want to use to fix the problem.

    #112438
    pcwriter
    Participant

    @eventfulsd

    I just tried creating an account on your site and believe I’ve found the cause of the discrepancy between subscribers and members: no activation email is received so folks simply cannot activate their accounts.

    Check with your hosting provider to ensure that your email accounts are set up correctly for WordPress (Buddypress uses the same email routines as WP).

    #21629
    Ed N.
    Participant

    During a recent project, I needed to get certain User Profile Data to be used. This was used outside any loops and not on the Profile page. Hopefully this will help others seeking the same information.

    To obtain the default data (such as User ID, User Login, ect) use the following:
    `global $bp;
    $the_user_id = $bp->loggedin_user->userdata->ID;
    $the_user_login = $bp->loggedin_user->userdata->user_login;`

    Userdata values include:
    ID
    user_login
    user_pass (this is encrypted MD5 Hash)
    user_nicename
    user_email
    user_url
    user_registered
    user_activation_key
    user_status
    display_name

    To get field data from extended profile fields for the current logged in user, use the following:
    `$the_first_name = bp_get_profile_field_data(‘field=First Name&user_id=’.bp_loggedin_user_id());
    /* Change field name to the one you added to the profile, or if you know the field’s #, you can use that instead. */
    `

    I do hope this helps someone else. It drove me nuts trying to track down the info, but after piecing bits of information together, I was able to get this figured out.
    Have fun!
    Ed

    @mercime
    Participant

    Is this then an issue with Messages only? In other words, those who register on your site using email addresses that end with country code extensions receive activation emails?.

    #111009
    Brandon Allen
    Participant

    When a user registers, an email is sent out with an activation link. The user must visit this link to activate their account before they can log in. I’m in a hurry, so I can’t do it right now, but there are a few plugins, and even some code snippets on this forum that will allow you to bypass activation. It’s not recommended on a live site to help block spam users.

    #21254
    Tonyone
    Member

    I’m doing some development and today got onto trying to register a few dummy accounts to play with but the activation email is not being sent from either the default theme, my own theme or Twenty Ten

    WordPress 3.1.1
    Buddypress 1.2.8

    I’ve searched and found all sorts of explanations and suggestions to use a plugin to change to SMPT but I think this is going in the wrong direction. If I write my own script and send mail via PHPs mail() function it works. If I go to the WordPress default login and click “Lost your password?” and put in an email address from an unconfirmed account I receive an email on that account and when I click the reset link in that email I can then login.

    PHP mail() works on my system.
    The default WordPress forgot password form sends email.
    The registration form on Buddypress default theme does not send email.

    The WordPress “Lost your password?” has <form action="url_to_site/wp-login.php?action=lostpassword …

    The Buddypress forms are <form action =" " … Interestingly though if you click "Complete sign up" the form is validated and you are taken to a confirmation page where you can upload an avatar.

    This sounds like a bug, swins like a bug, smells like a bug. Anyone know what it is, where it is and how I might squash it? I’ve been looking half the day and am posting here in the hope that someone has already found the blighter.

    Cheers

    TonyO

    #109639

    In reply to: Avatars Not Working.

    Ok, the issue arrises when I ‘bp_core_activation_signup_user_notification_to’ and switch the confirmation email to someone other than the user… So, it’s something with the activation not be activated by the actual user.

    Hugo Ashmore
    Participant

    You would know if you were using Multisite as setting up a WP install to run in Multisite mode is a manual procedure where you have to first add a line to wp-config then a new option appears in the dashboard to set up a network.

    If you’ve added users from the backend then log in as that user on the main site.

    Non receipt of activation emails could be any number of issues but generally it’s a server based one rather than WP and/or emails from the server are getting rejected by the receiving server if it thinks your server is not allowed to send emails from your domain name, also check spam boxes ion case they’ve been dropped in there

    Hugo Ashmore
    Participant

    Then you need to enable site registrations, people then need to register, receive their activation email activate their account login and do something then they should appear in BP members directory. You will need to ensure BP settings allow users to create groups and that forums are setup.

    What type of WP install are you running? With multisite users are added under Network Admin users list in the dashboard and have to be manually added to main or other sites and given WP roles if required.

    #108958

    @hnla and mercime

    I see. I just tried to create a demo account but for some reason buddypress has threw a wrench into things. Before, people where able to just click the register link and choose a username and login which would then direct people to a paypal page before they could access the site.

    Now, for some unknown reason, there is no way to access the site at all! You go to register, it comes up with the a buddypress from instead of the wordpress login page. Once you fill it out, it sends an email to you with an activation link. Once you do that, it takes you to the site but it is just as restricted as if you where a non-member and it doesn’t seem like there is any way to actually become a member like there way before. I’ll take some screen shots and post links.

    #108236
    Virtuali
    Participant
    @mercime
    Participant

    WP/BP versions of the install that got fatal error? To get better attention of plugin dev for group email subsription, post in this forum https://buddypress.org/community/groups/buddypress-group-email-subscription/forum/

    What theme are you using – bp-default child theme, custom BP theme or WP theme with BP Template Pack? If you change theme to bp-default theme, do you get a fatal error on activation?

    Don’t blame your permissions right away :-) BP Classifieds is compatible up to WPMU 2.9.2 and BP 1.2.1 only. Unless you’re on those versions, expect the plugin to break in current versions as there have been numerous major code changes since plugin was released a year ago.

    #20702
    dubabado
    Participant

    Hi there, i have just started on BP and my friends are trying to become members but they are not receiving the activation email… so it´s they can not confirm that they are really the ones that waht to become members. Where do I configure this notifications?

    v_andreev
    Member

    “If you make a new user account, does it work ok?”

    Well, yes and no. The user information is saved to the database, but as mentioned earlier, in two’s. I’m getting two of everything.

    1. When I submit the form field, and if there’s an error, I get two error messages for the same error (per field).
    2. I get two activation emails per user.
    3. I have two wp_users with same username
    4. Then when I click the members link, I have two members with the same name, avatar..etc. (at least this is consistent with wp_users :-) )

    And I just began to notice that my avatar uploads isn’t working either….do I need to start over? or create a DB hack where it deletes duplicate rows before sending an activation email?

    Some things are working, like when someone signs up, and activates their account, the cookies are saved and the login status is active. This is why I’m not sure if I just need to delete and re-create everything.

    hloti
    Participant

    Hi every one. on my site when the activation email is sent and the user clicks on the activation key, the page comes with this error:

    Warning: require_once(/home/gaagooco/public_html/wp-includesregistration.php) [function.require-once]: failed to open stream: No such file or directory in /home/gaagooco/public_html/wp-content/plugins/buddypress/bp-core/bp-core-signup.php on line 215

    Fatal error: require_once() [function.require]: Failed opening required ’/home/gaagooco/public_html/wp-includesregistration.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/gaagooco/public_html/wp-content/plugins/buddypress/bp-core/bp-core-signup.php on line 215

    I have the following configuration

    1. site is hosted on TMD Hosting with the usual configuration with latest and updated vesrions
    2. my word press is version 3.0.4
    3. my buddypress version is 1.2.7
    4. the site is a RTL site in Persian language

    any idea that can help me. thanks for your time

    many thanks.
    Hloti

    #20460
    myerman
    Member

    I’m trying to troubleshoot the email activation messages that go out when users signup with buddypress….after a bit of googling, I found the right bit of code in a file that should be /bp-members/bp-members-signup.php

    function bp_members_signup_send_validation_email( $user_id, $user_email, $key ) {
    $activate_url = bp_get_activation_page() .”?key=$key”;
    $activate_url = esc_url( $activate_url );

    $from_name = ( ” == get_option( ‘blogname’ ) ) ? __( ‘BuddyPress’, ‘buddypress’ ) : esc_html( get_option( ‘blogname’ ) );

    $message = sprintf( __( “Thanks for registering! To complete the activation of your account please click the following link:nn%snn”, ‘buddypress’ ), $activate_url );
    $subject = ‘ ‘ . __( ‘Activate Your Account’, ‘buddypress’ );

    // Send the message
    $to = apply_filters( ‘bp_members_signup_send_validation_email_to’, $user_email, $user_id );
    $subject = apply_filters( ‘bp_members_signup_send_validation_email_subject’, $subject, $user_id );
    $message = apply_filters( ‘bp_members_signup_send_validation_email_message’, $message, $user_id, $activate_url );

    wp_mail( $to, $subject, $message );

    do_action( ‘bp_members_sent_user_validation_email’, $subject, $message, $user_id, $user_email, $key );
    }

    HOWEVER, in the version of BuddyPress running on our site (version 1.2.5.2) I can’t find any directories named bp-members/ at all! Have I gone mad? Has it been moved somewhere else?

    DJTwittr
    Member

    http://www.callum-macdonald.com/code/wp-mail-smtp/

    This one worked like a champ…with my smtp settings in place ;)

    Virtuali
    Participant
    DJTwittr
    Member

    This is “not” the case, I was running a complete wp 3.1 site, activation emails worked like a champ, and even saw send activation emails in the settings, now with BP that seems to have been ommitted, and the activation emails fail…. seems like we got some buck passing here….

Viewing 25 results - 1,326 through 1,350 (of 1,893 total)
Skip to toolbar