Search Results for 'activation email'
-
Search Results
-
Using wpmu 2.8.2 and bp 1.0.3.
When a user signs up for a buddypress account, the activation link given in the email leads to a 404 page. To bypass this could I somehow remove the necessity of activating via email?
Is there any way to have it so that a user does not need to activate their account through an email?
Thanks
When people register it forces them to click on the activation link in their email. How do I turn that off?
Topic: Welcome plugin bug @djpaul
Hello djpaul :p
With your plugin users can not activate her account:
>Die Nachricht konnte nicht versandt werde. Versuch es später noch einmal.<
Copy per hand > same bug.
Deactivate plugin and everything is ok, activation works without welcome 1.3. But not good: the username+email ist reserved for a few days (deleted in admin!).
WP 2.8.4a and BP1.1alpha
Any idea?
Kind regards
Markus
Topic: User lost activation email
One of my new users lost their activation email, is there anyway I can manually through phpmyadmin activate them? Does doing this also add them to the users table?
I get these error messages with my mailing list integration code?
[04-Sep-2009 10:12:57] PHP Warning: join() [function.join]: Invalid arguments passed in /serverpath/wp-content/mu-plugins/bp-custom.php on line 363
[04-Sep-2009 10:14:44] WordPress database error Duplicate entry ‘781’ for key 1 for query INSERT mailusers SET users_id=’781′, group_id=’1′, signup_date= UNIX_TIMESTAMP(), firstname= ‘Test’, lastname= ‘User’, email_address = ‘peter@emailaddress.net’ made by require, require_once, do_action, call_user_func_array, bp_core_do_catch_uri, load_template, require_once, custom_do_activation, wpmu_activate_signup, do_action, call_user_func_array, synchro_wp_usermeta
The problem is that I tried to use the same ID from WPMU/BP in my mailing list, but my mailing list already has many more users on it.
Is there a way to reset the members ID from now on to a higher value? Specifically, my latest member ID is 780, how can I make the next one to be 3000?
What would happen if I sign up a test user and manually change his ID in the database to 3000? Would the next one take 3001? Or would I mess up the entire system?
Or is there a cleaner, official way to do this?
2 people I personally know, tried signing up to my website, and have still not received *activation emails* Both members use *AOL*
It seems people that use other email addresses, were able to sign up fine; But both AOL members haven’t received the confirmation
One person has tried signing up on my website a few times now. Does anyone know what is causing this? Or how to fix it?
I need this for a plugin/function. I can’t figure out how to do anything with the user_email during activation. When I do this:
function synchro_wp_usermeta($user_id, $password, $meta) {
global $bp, $wpdb;
$email = $wpdb->query("SELECT user_email FROM wp_users WHERE ID='$user_id'");
echo $email;
...
}
add_action( 'wpmu_activate_user', 'synchro_wp_usermeta', 10, 3);I only get the number ‘1’. I have no clue why. I’m clearly missing something obvious.
If I can’t select the user_email on $user_id, how? The query works fine directly in the database. Do I need to change something in the PHP/Wordpress tagging system?
Please help me out. I’ve been horribly stuck on this for the last 24 hours…

EDIT: Sorry, figured it out. Should have studied the codex. This works:
$email = $wpdb->get_var("SELECT user_email FROM $wpdb->users WHERE ID='$user_id'");
echo $email;But I still don’t get why simply $user_email doesn’t work in that function…
