Search Results for 'activation email'
-
Search Results
-
Hello,
I am having problems with registrations, ’cause a friend registered, but it says: “You must activate your account with an e-mail activation we sent you” and the e-mail doesn’t arrive.
The e-mail of my site, is gmail. And it’s configurated in the general configuration.
What is the problem?
Whetever, I configurated in others sites the gmail SMTP, but i dont find where can I configure the gmail SMTP.
Topic: What is the difference
could someone please explain, what is the important difference (from question of localizaion) of:
`function bpxs_check_email_confirm()
{
global $bp, $bpxs;if( $bpxs->options->email_confirmation == true )
{
// unset any existing errors
unset( $bp->signup->errors );//check if email address is correct and set an error message for the first field if any
$account_details = bp_core_validate_user_signup( $_POST, $_POST );if( ! empty( $account_details->errors ) )
$bp->signup->errors = $account_details->errors[0];if( ! empty( $_POST ) )
{
if( empty( $_POST ) )
$bp->signup->errors = __( ‘Please make sure you enter your email twice’, ‘bpxs’ );elseif( $_POST != $_POST )
$bp->signup->errors = __( ‘The emails you entered do not match.’, ‘bpxs’ );
}
}
}
add_action(‘bp_signup_validate’, ‘bpxs_check_email_confirm’);`and
`function bpxs_validate_username( $user_name )
{
global $wpdb;$maybe = array();
preg_match( “/[a-z0-9]+/”, $user_name, $maybe );$db_illegal_names = get_option( ‘illegal_names’ );
$filtered_illegal_names = apply_filters( ‘bp_core_illegal_usernames’, array( ‘www’, ‘web’, ‘root’, ‘admin’, ‘main’, ‘invite’, ‘administrator’, BP_GROUPS_SLUG, BP_MEMBERS_SLUG, BP_FORUMS_SLUG, BP_BLOGS_SLUG, BP_REGISTER_SLUG, BP_ACTIVATION_SLUG ) );$illegal_names = array_merge( (array)$db_illegal_names, (array)$filtered_illegal_names );
if( ! validate_username( $user_name ) || $user_name != $maybe[0] )
$error = __( ‘Only lowercase letters and numbers allowed.’, ‘bpxs’ );if( in_array( $user_name, (array)$illegal_names ) )
$error = __( ‘This username is reserved. Please chose another one.’, ‘bpxs’ );if( strlen( $user_name ) < 4 )
$error = __( ‘Username must be at least 4 characters.’, ‘bpxs’ ) ;if( strpos( ‘ ‘ . $user_name, ‘_’ ) != false )
$error = __( ‘Usernames must not contain the character “_”!’, ‘bpxs’ ) ;$match = array();
preg_match( ‘/[0-9]*/’, $user_name, $match );if( $match[0] == $user_name )
$error = __( ‘Usernames must contain letters too!’, ‘bpxs’ ) ;$error = apply_filters( ‘bpxs_custom_error’, $error, $user_name );
return $error;
}`after loading textdomains both codes are translated (in one plugin), but issue is that first is recognized by multilingual plugins, but second is not. if issue is in global $wpdb;, how can I pass round it?
thanks.
Hello, I’ve got a great running copy of buddypress running and I LOVE it! however it’s running in a lan and I’d like to manually approve members (the long way I know) but I’d also like to let them sign up without needing to leave an email address, and obviously I don’t send out any emails anyways, so is there an easy way to do this?
In other words I have no email server running, nor do I want to send out an activation email, and I also don’t want to have the email box be required upon signing up.
Is this even possible?
Also how do I go about activating a member who’s signed up with an invalid email as that’s what’s currently happening, but it doesn’t seem like they are able to login even after I change the default upon signing up “inactive” mode to “member”
Topic: Registration
I am testing out the buddypress. Clean Install.I try to register an account with a valid email. new user shows up in the Admin Panel, but it does not send the activation email to new user.
What am I missing?Topic: Application Pool Limit?
I have a new site that’s grown rather quickly. NSFW http://www.lockedndenied.com with 423 members in 37 days or so. It is WP 3.0.4 and BP 1.2.7 with 30 Plugins.
Achievements, Akisment, All in one SEO, BP Registration Options, BuddyPress, BuddyPress Chat Component, BuddyPress Community Stats, BuddyPress Group Forum Extras, BuddyPress Forum Signature, BuddyPress Group Email Subscription, BuddyPress Like, BuddyPress Links, BuddyPress Mass Messaging, BuddyPress Member Profile Stats, BuddyPress Moderation, Contact Form 7, Easy Albums, Easy timer, Easy Tube, Exclude Pages, Graceful Email Obfuscation, PhotoSmash, Q and A, RSS Importer, Really Simple CAPTCHA, Technical Support, User Activation Keys, WP Ban.
WHEW!
Anyway, recently I have been getting a lot of server timeouts and when 5 or more people are online I get “Service Unavailable.” and 503 Error messages.
My hosting company’s first suggestion was to remove the plugins!
I think these plugins are essential to the fun of the site.
Does anyone have a large and active community site with WP/BP? What issues have you come up with? I’m on a shared server and his second suggestion was to upgrade to “business class”.Ideas anyone?
Hello, I am using buddypress 1.2.7, wordpress 3.04.
I am using godaddy wordpress hosting.
The activation email takes a half hour to receive, yes, a half hour. They do come, but why the fracc does it take so bleepity long!!!?
I have gotten over 40 inactivated accounts on my site due to this.
I am jealous of wordpress.org, it takes split second to arrive.
😥Does anyone have any idea of how I can fix this? plugin?
I have a small login form I toggle via jquery and would like to accomplish the same for my registration. The problem is that my form doesn’t do anything other than redirect to the main page. There are no pending activations either, so I just can’t get this form to submit. Any ideas? I realize the username field isn’t on there, but that’s not the culprit. I know there’s something much more important that I’m not doing. Just can’t figure it out!
my code:
‘
‘Hi, I need to find a way of directing the activation email to the site admin email address rather than the user. Can’t figure it out, any ideas???
I’m very frustrated that this activation email sending problem has no known “cure”. I have investigated the problem via code surfing and I am || this close to overriding the current activation mail sending function with my own based on php mail. PLEASE, tell me there is a better solution and I am just missing the obvious. Basically this bug renders buddy press a useless space taking plugin.
I have seen multiple people say “I fixed it!” and then they never leave the solution on the forums. I don’t think bypassing the BP activation mail send function is going to be a good thing long term so I would immensely appreciate a fix that is integrated into BP.
Thanks for reading this post!
