Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'activation email'

Viewing 25 results - 1,751 through 1,775 (of 1,893 total)
  • Author
    Search Results
  • #7917
    Mike Pratt
    Participant

    I just noticed this happening on my 2 sites. Prod is on bp 1.1.3 and Dev is trunk 2161.

    The new user activation email subject line generated in bp-core-activation.php from line 118

    -> $subject = ‘[‘ . $from_name . ‘] ‘ . sprintf(__(‘Activate %s’, ‘buddypress’ ), clean_url(‘http://’ . $domain . $path));

    returns this:

    Subject: [Bugle Notes] Activate http://

    looks like %s and $domain & $path are passed in empty, if at all

    screenshot of email -> http://img.skitch.com/20091209-ppyr448duhqg4q4bjgegsxrpg6.jpg

    Hard to debug. Thoughts?

    Mike

    #58272
    Jean-Pierre Michaud
    Participant

    right now, i just registered, had an activation email,

    (btw, the email title is: [BuddyPress Testdrive] Activate http:// )

    activated, but then my password is not working… requested new password to access.

    in the wp-admin, the recent Comments block, each comment url point to the wp-admin/index.php file… no real usage… rofl

    the adminbar in the wp-admin is hovering the original from wpmu… and i’m dyslexic… rofl

    #57266
    Paul Wong-Gibbs
    Keymaster

    You are using outdated versions of both WPMU and BuddyPress. I urge you to upgrade.

    There was a bug in some previous version of BuddyPress to do with the wrong link being put on to the activation emails, but without knowing exactly why people can’t activate their accounts (i.e. do they get the emails? Does the link work? What happens?) it is tough to provide specific advice.

    #56798
    Jeff Sayre
    Participant

    Yes, that is the next step I’d suggest.

    #56797
    Squashroby
    Participant

    @Jeff Sayre

    I’ve a new install hosted on H-Sphere. The site isn’t live yet but I have tried to install buddypress links but the problem persists after deactivating this. You’ve got me thinking though as I read something on a post about WPMU plugins with ‘-‘ in the name causing issues, maybe the .htaccess was modified. Can I copy and rename htaccess.dist?

    Cheers

    #56793
    Jeff Sayre
    Participant

    Is this a localhost development install or a remote, hosted install? If hosted, is it a live site that used to work but is now experiencing this issue?

    Have you modified the standard .htaccess file that WPMU automatically creates on new installs? This could be done manually or via some plugin that you’ve recently installed and activated.

    #7589
    Squashroby
    Participant

    Unable to receive activation or lost password emails.

    Although WPMU now tells me everything is installed and working I’m not able to register using the buddypress frontend.

    From my php log:

    Request exceeded the limit of 10 internal redirects due to probable configuration error. Use ‘LimitInternalRecursion’ to increase the limit if necessary.

    New install using

    WordPress MU 2.8.5.2.

    Buddypress 1.1.2

    PHP 5.2.6

    Thanks

    #56783
    Squashroby
    Participant

    @MrMaz

    Unable to receive activation or lost password emails.

    Although WPMU now tells me everything is installed and working I’m not able to register using the buddypress frontend. I found a reference in a forum suggesting that any plugins with ‘-‘ in their name can cause the error I’m seeing.

    From my log:

    Request exceeded the limit of 10 internal redirects due to probable configuration error. Use ‘LimitInternalRecursion’ to increase the limit if necessary.

    I’m still getting this after deactivating buddypress-links though so may be more of a buddypress general support quesiton. Any ideas?

    #7563
    David
    Participant

    Software versions WPMU 2.8.5.2 y Buddypress 1.1.2

    A user can register perfectly on site, and so

    A user logs into the network, until all right, you receive your confirmation email, example:

    http://domain.com/activar?key=4c66b9e47db3e661

    By clicking the link correctly goes to the option of activating, but form enter activation code, no code appears on the form. The system remains static there, I tried to manually enter that code (in my example: 4c66b9e47db3e661) but continually asks me for a correct activation code.

    I imagine that this began to happen from MU WordPress upgrade to the latest version.

    Otherwise, the user requesting this code if it exists, but I do not on any list of users, but the system identifies as pending, because if you register again it says already in use …

    Is there any way to know that folks are pending activation users ..

    #7521
    jamesb4551
    Participant

    This keeps coming up when my users click the activation link in their email. I am using the Theamatic theme as a parent them and have followed the instructions here http://codex.buddypress.org/how-to-guides/upgrading-a-buddypress-1-0-theme-for-buddypress-1-1/ but it still keeps saying this. I’m in WPMU 2.8.5 and Buddypress 1.1.2, can someone solve this please it’s doing my head in?

    url: http://the-exemplars.com

    #7462
    jamesyeah
    Participant

    Hey,

    This is my first post here, I’ve been playing with BuddyPress for a few days now and it really is an amazing piece of work!

    I’ve got an install up and running and have been playing about with it, but the new user registration doesn’t seem to be working.

    Users complete the form, and go through the activation process in the email, but at no time are given their password in order to log in, they arnt showing up in the wordpress backend either.

    If you would like to register an account to see what I mean feel free http://www.yeahetc.com

    Any help would really be appreciated!

    Thanks, James.

    #7382
    peterverkooijen
    Participant

    My first custom field_1 is for fullname. I want to capitalize that input. I already have a function that does that – nameize(). Where should I apply it?

    I’ve gone through a lot of trouble to also update the full name in wp_usermeta and elsewhere upon activation, so those fields all have nicely formatted names.

    But the display name is apparently stored in xprofile before activation. Where is the code that does that? Or is there a way to update the xprofile field with capitalized versions in the same custom function I use to update wp_usermeta?:

    function synchro_wp_usermeta($user_id, $password, $meta) {
    global $bp, $wpdb;

    $uid = get_userdata($user_id);
    $email = $uid->user_email;

    $fullname = $meta[field_1];
    $space = strpos( $fullname, ' ' );

    $company = $meta[field_2];

    if ( false === $space ) {
    $firstname = $fullname;
    $lastname = '';
    } else {
    $firstname = substr( $fullname, 0, $space );
    $lastname = trim( substr( $fullname, $space, strlen($fullname) ) );
    }

    $firstname = nameize($firstname);
    $lastname = nameize($lastname);

    $autousername = str_replace('-', '', str_replace("'", "", str_replace('.', '', str_replace(' ', '', strtolower($fullname)))));

    update_usermeta( $user_id, 'nickname', $fullname );
    update_usermeta( $user_id, 'first_name', $firstname );
    update_usermeta( $user_id, 'last_name', $lastname );

    $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET user_login = %s WHERE ID = %d", $autousername, $user_id ) );
    $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET user_nicename = %s WHERE ID = %d", $autousername, $user_id ) );
    $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET display_name = %s WHERE ID = %d", $fullname, $user_id ) );
    $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET user_url = %s WHERE ID = %d", bp_core_get_user_domain( $user_id ), $user_id ) );
    }
    add_action( 'wpmu_activate_user', 'synchro_wp_usermeta', 10, 3);

    #55380
    Brajesh Singh
    Participant

    you are most welcome :)

    Well,just go to your current theme and edit registration/register.php,remove the line saying “You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address”.

    you will see it somewhere written under

    ‘<?php if ( ‘completed-confirmation’ == bp_get_current_signup_step() ) : ?>’

    Remove that.

    Better I just suggest to remove the avatar uploading step,as the account gets already activated and the uploaded avatar(the second screen of registration)(which earlier were used at the time of activation will not work)

    so,If you are using un modified default theme,you can remove the code from line 215(where the if starts) to 276,where the if ends safely.

    Please note,The avatar uploading step at registration will not work,so just remove that step.that’s it.

    Thanks

    Brajesh

    #7241
    D’Arcy Norman
    Participant

    (added to Trac as well http://trac.buddypress.org/ticket/1265 )

    I posted this initially as a response on another thread, but that thread was about the Welcome Pack, and the problem I’m seeing is completely separate from Welcome Pack, so I’m reposting it here for clarification.

    The Dashboard Add Users feature has been broken on my site for awhile now, and I’ve been trying to follow the code and various string replacements, to see what the cause is. The problem we’re having is the email confirmation that is sent out after using Dashboard > Add User contains a broken string replacement, and no URL to click.

    I just tried a fresh install of WPMU (2.8.4a) and tested Dashboard > Users > Add User (worked fine, email arrived intact).

    After installing and enabling BuddyPress 1.1.1, doing the same thing to Add User results in a borked email:

    Hi,
    You've been invited to join 'WPMU Test Blogs' at
    http://myserver.ca/wpmu as a subscriber.
    If you do not want to join this blog please ignore
    this email. This invitation will expire in a few days.

    Please click the folowing link to activate your user account:
    %s

    The last %s isn’t being substituted by the activation link.

    I’ve tried following the various filters and functions, but can’t seem to nail it down. The problem disappears if BuddyPress is disabled.

    #55007
    D’Arcy Norman
    Participant

    I’m seeing this, too. I just tried a fresh install of WPMU (2.8.4a) and tested Dashboard > Users > Add User (worked fine, email arrived intact).

    After installing and enabling BuddyPress 1.1.1, doing the same thing to Add User results in a borked email:

    Hi,
    You've been invited to join 'WPMU Test Blogs' at
    http://myserver.ca/wpmu as a subscriber.
    If you do not want to join this blog please ignore
    this email. This invitation will expire in a few days.

    Please click the folowing link to activate your user account:
    %s

    The last %s isn’t being substituted by the activation link.

    #55005
    westpointer
    Participant

    Hey Guys – the hook that used to work at activation was no longer doing the job. I have a new file available. Please send me a message with your email addy and I’ll send it for testing.

    Thanks!

    TiteufPld
    Participant

    Hi all !

    I spent a couple of hours to understand why it wasn’t possible to upload an avatar just after registration.

    On the “sign up complete” page, this sentence appears “We’ve fetched an avatar for your new account. If you’d like to change this, why not upload a new one while you wait for your activation email?”

    Yop, nice idea ! But the fact is while the account is not activated you can’t upload an avatar (“There was a problem uploading your avatar, please try uploading it again”)

    The control is make on L150 in wp-content/plugins/buddypress/bp-core/bp-core-signup.php

    For now I just install the “Autoactivate Users and Blogs at Buddypress Signup” (tyou can download it at http://www.thinkinginwordpress.com/2009/10/autoactivate-users-and-blogs-at-buddypress-signup/

    #7196
    copgarden
    Participant

    Wanted to freshen up this issue by re-posting. Hope that’s ok.

    I disabled all other plugins when testing this, and am using WPMU 2.8.4a, BP1.1.1 and bbPress 1.0.2. Found the issue when trying to get Welcome Pack 1.41 working.

    When BuddyPress is inactive, and a new user is added via Dashboard>Users>Add New menu, WPMU sends out the new user activation email just fine, and skips it when “skip activation” is selected as it’s supposed to. When BuddyPress Plugin is active, WPMU sends out a broken activation email for new users, even when “skip activation” is selected. Email breaks at the link you’re supposed to click. So there seems to be a problem with the WPMU activation email when BuddyPress is active.

    Pertinent info:

    There are 2 places in the WPMU Dashboard an admin can add a new user. Further up in the Site Admin>Users menu, and further down in Users>Add New. Welcome Pack is only activated if a user is added from the further down Users>Add New menu. This is the email that breaks, email works fine from Site Admin>Users menu, but Welcome Pack won’t activate from there.

    Glitch is only present when BuddyPress is active.

    Any ideas?

    #54611
    Paul Wong-Gibbs
    Keymaster

    Previous to BP 1.1, all user registration was dealt with by WordPress, so it’s technically correct to point people towards existing WordPress/MU resources and forums for help.

    Since BP 1.1, however, BP changes the new account confirmation/activation email – because on the standard BP 1.1 signup page, the user can pick their own password. And of course, it’s a security issue if we were to somehow send their (encrypted) password back to them. So BP 1.1 overrides the standard WordPress MU email so it doesn’t include the password text.

    But, the activation link is part of WordPress. Yes, the BuddyPress default theme uses this behaviour too – but it calls the WordPress code.

    #54601
    Paul Wong-Gibbs
    Keymaster

    I’m still lost. I also don’t really have time to look at this until the weekend sometime. Could you help me again please?

    Yep, I go to the main blog via Users menu (not site admin>users) and…

    Could you give me a sample link (feel free to cut your domain off the beginning), i.e. http://example.com/how_to/get_to_this/page. I’m being a noob and can’t see it :(

    ...EXCEPT the email with username & randomly generated password that should replace that activation email shown above. (I'm thinking this is a wordpress email? Not sure.)

    Correct. Welcome Pack doesn’t (or shouldn’t) touch the activation email, which is why this issue is so weird-sounding.

    You ARE aware since BP 1.1, if a new user registers via http://testbp.org/register, they are able to pick their password and as such it isn’t emailed to them? (Though they still get a confirmation/account activation email)

    #54590
    copgarden
    Participant

    When I use the site admin>users method it doesn’t engage with Welcome Pack, which is the same thing that happened in my previous version of BuddyPress. The activation email gets killed there too, just tested that.

    #54588
    copgarden
    Participant

    Yep, I go to the main blog via Users menu (not site admin>users) and input the username and email address, select skip confirmation email, send. I get all of the notifications welcome pack sends out EXCEPT the email with username & randomly generated password that should replace that activation email shown above. (I’m thinking this is a wordpress email? Not sure.)

    The weird thing is when I do the same process from a sub-blog everything behaves the same except I DO get the email with the username & randomly generated password in addition.

    In case it helps here’s what happens over 3 tests from each main & sub blog dashboards:

    MAIN BLOG DASHBOARD:

    1. Broken activation email – came first all 3 times

    2. Then these 3 come, random order each time:

    Welcome pack welcome email

    Welcome pack friend invite email notification

    Welcome pack group invite email notification

    SUB BLOG NEW USER:

    1. Broken activation email

    2. Then these 4 come, random order each time:

    Account is setup email with username and randomly generated password

    Welcome pack welcome email

    Welcome pack friend invite email notification

    Welcome pack group invite email notification

    #54567
    copgarden
    Participant

    Thank you for working on this problem!

    BP1.1.1, Welcome Pack 1.41

    In case it helps, see the activation email that I get below, it gives up at the link. This message gets sent even though I had skip activation email selected, and no email stating username and password is sent.

    Hi,

    You’ve been invited to join ‘CoP Literacy Network – Sandbox’ at

    http://copgardensandbox.com as a subscriber.

    If you do not want to join this blog please ignore

    this email. This invitation will expire in a few days.

    Please click the folowing link to activate your user account:

    %s

    shedmore
    Participant

    Hey DJ Paul

    I noticed that you added bp_core_account_activated hook which should work in most cases, but like I said (in my particular case) I skip over the activation via the buddypress fbconnect plugin. It inserts the user directly.

    Maybe there is a way for me to call that activation once the facebook user is authenticated? Do you know of a way to trigger that whole authorization process without actually making the user click on an email?

    That way it basicaly works like this

    1. User registers with Facebook conenct button

    2. Facebook sends back userinfo (via the api) – thats working currently

    (and here is where I am fuzzy)

    3. Take the fb information and trigger the account activation “automatically” …effectively bypassing the need for a “key”

    Or

    Is there another hook I can grab onto somewhere in the process beyond bp_core_account_activated that would work only on INITIAL Registration…but still after all globals are loaded (to ensure the messaging will work)

    Any ideas?

    Thanks again for the help!

    shedmore
    Participant

    Wow thanks…I will try as soon as I get back to the local computer hosting my test dev. What seems to be happening (in short) is that becuase my users use facebook to login/register…it never goes through the “activation” email scenario….and becuase it registers a new user (and activates them) BEFORE those messages_global are set – the send message function fails.

    I tried reording the load_plugin order of the core and the message globals so that they would boot before, but once I did that it screwed up other things (like the order they need to be in to boot through the various functions in buddypress)..so I reverted, and have sense been trying to figure out how to maybe Trigger the “activation” silently in the registration process so that the email verification is not necissary.

    I will try the new plugin and report back

Viewing 25 results - 1,751 through 1,775 (of 1,893 total)
Skip to toolbar