Search Results for 'activation email'
-
Search Results
-
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
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
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 ..
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?
Topic: New Users Not Creating
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.
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);(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:
%sThe 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.
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/
Topic: Welcome Pack Email Problem
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?

