Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'activation email'

Viewing 25 results - 1,351 through 1,375 (of 1,893 total)
  • Author
    Search Results
  • #106655
    lolabytoja
    Member

    Hello There, so im new to BuddyPress…Trying to set up a site and what i am finding is with this S2member/Buddypress Collaboration. Basically when i go on my site which i have set up and try to register as a general “subscriber or something it tells me an activation email has been sent but i never actually receive one.

    I have tried on multiple accounts but i am having no luck whatsoever. Any ideas?

    Thanks

    hi,

    I have the same situation that activation emails are not sending in my installation as well. Did you solved that problem? If you could help me please…
    how to solve it?

    In my system forgot password mails are working….

    I don’t know whats the problem in activation mail…
    Please help me…

    Thanks in advance

    #106132
    Luca Foss
    Member

    Well…

    I figured that I can have a register page with the register fields that is independent of login status. The purpose of the register page is to “save data to the database”.

    Ever since I began this forum post, I solved some things. I created my join page (I’d have to really break it down how I did it). When a new user registers, his/her information gets saved to the database. Then the screen reloads saying that an “email was sent and to activate the account, click the email”.

    The email was sent to the make-believe user I created. When I clicked the email, it redirected me to the activation page where it encouraged me to login. HERE AT THIS POINT (step 1), I figured that I can run some conditional, where if someone else is logged in, the new user logging into his/her account would log the active user out. (step 2) At this point, once the new user logs and the active user is logged out, the avatar load process and the rest of the completion of the new account can take place.

    As long as all of the needed info is supplied to the db for a new user, it looks to me like this is the most important thing in establishing a new user. I shouldn’t be breaking anything (correct me if I’m wrong here).

    So..it sounds possible to me… :-)

    #105968
    KoomaR
    Member

    or how can i disable users activations? I mean instant activation.

    #20093
    KoomaR
    Member

    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.

    #20092
    James
    Participant

    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.

    #105503
    Sofian J. Anom
    Participant
    Danstinebaugh
    Participant

    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”

    #105315
    TimCarey
    Participant

    Do I need to have the network and super admin with buddy press. I didn’t because I don’t want individual blogs. Is there another way to deactivate blogs? And above the mention something called thesis. What is that? I have a test site and everything seems to be working great. And but it is network activated. My production site has everything installed correctly except the network is not activated. But this production site doesn’t send a activation emails. If I had network activated, how do I deactivate blogs? I also wonder about having group pages. Something that can explain the group in the march larger page. And then have all the other group pages be subordinate.

    #105033
    modemlooper
    Moderator

    has_members()
    next_member()
    rewind_members()
    members()
    the_member()
    bp_rewind_members()
    bp_has_members( $args = ” )
    ‘type’ => $type,
    ‘page’ => $page,
    ‘per_page’ => 20,
    ‘max’ => false,
    ‘include’ => false, // Pass a user_id or comma separated list of user_ids to only show these users
    ‘user_id’ => $user_id, // Pass a user_id to only show friends of this user
    ‘search_terms’ => $search_terms, // Pass search_terms to filter users by their profile data
    ‘populate_extras’ => true // Fetch usermeta? Friend count, last active etc.

    bp_the_member()
    bp_members()
    //Misc
    bp_members_pagination_count()
    bp_members_pagination_links()
    bp_member_user_id()
    bp_get_member_user_id()
    bp_member_user_nicename()
    bp_get_member_user_nicename()
    bp_member_user_login()
    bp_get_member_user_login()
    bp_member_user_email()
    bp_get_member_user_email()
    bp_member_is_loggedin_user()
    bp_member_avatar( $args = ” )
    bp_get_member_avatar( $args = ” )
    ‘type’ => ‘thumb’,
    ‘width’ => false,
    ‘height’ => false,
    ‘class’ => ‘avatar’,
    ‘id’ => false,
    ‘alt’ => __( ‘Member avatar’, ‘buddypress’ )

    bp_member_permalink()
    bp_member_link()
    bp_get_member_link()
    bp_member_name()
    bp_get_member_name()
    bp_member_last_active()
    bp_get_member_last_active()
    bp_member_latest_update( $args = ” )
    bp_get_member_latest_update( $args = ” ) {
    ‘length’ => 15

    bp_member_profile_data( $args = ” )
    ‘field’ => false, // Field name
    bp_member_registered()
    bp_get_member_registered()
    bp_member_add_friend_button()
    bp_add_friend_button( $members_template->member->id, $friend_status )
    bp_member_total_friend_count()
    bp_get_member_total_friend_count()
    bp_member_random_profile_data()
    bp_member_hidden_fields()
    bp_directory_members_search_form()
    bp_total_site_member_count()
    bp_get_total_site_member_count()
    //Check bp-core-templatetags.php for comments about nav tags
    bp_get_loggedin_user_nav()
    bp_get_displayed_user_nav()
    bp_get_options_nav()
    bp_get_options_title()
    //Avatar Tags
    bp_has_options_avatar()
    bp_get_options_avatar()
    bp_comment_author_avatar()
    bp_post_author_avatar()
    bp_loggedin_user_avatar( $args = ” )
    bp_get_loggedin_user_avatar( $args = ” ) {
    ‘type’=> ‘thumb’,
    ‘width’=> false,
    ‘height’=> false,
    ‘html’=> true

    bp_displayed_user_avatar( $args = ” )
    bp_get_displayed_user_avatar( $args = ” )
    ‘type’=> ‘thumb’,
    ‘width’=> false,
    ‘height’=> false,
    ‘html’=> true

    bp_avatar_admin_step()
    bp_get_avatar_admin_step()
    bp_avatar_to_crop()
    bp_get_avatar_to_crop()
    bp_avatar_to_crop_src()
    bp_get_avatar_to_crop_src()
    bp_avatar_cropper()
    //Other
    bp_site_name()
    bp_core_get_wp_profile()
    bp_get_profile_header()
    bp_exists( $component_name )
    bp_format_time( $time, $just_date = false )
    bp_word_or_name( $youtext, $nametext, $capitalize = true, $echo = true )
    bp_your_or_their( $capitalize = true, $echo = true )
    bp_get_plugin_sidebar()
    bp_page_title()
    bp_get_page_title()
    bp_styles()
    bp_has_custom_signup_page()
    bp_signup_page()
    bp_get_signup_page()
    bp_has_custom_activation_page()
    bp_activation_page()
    bp_get_activation_page()
    bp_search_form_enabled()
    bp_search_form_action()
    bp_search_form_type_select()
    bp_search_form()
    bp_log_out_link()
    bp_custom_profile_boxes()
    bp_custom_profile_sidebar_boxes()
    bp_create_excerpt( $text, $excerpt_length = 55, $filter_shortcodes = true )
    bp_is_serialized( $data )
    bp_total_member_count()
    bp_get_total_member_count()
    bp_signup_username_value()
    bp_get_signup_username_value()
    bp_signup_email_value()
    bp_get_signup_email_value()
    bp_signup_with_blog_value()
    bp_get_signup_with_blog_value()
    bp_signup_blog_url_value()
    bp_get_signup_blog_url_value()
    bp_signup_blog_title_value()
    bp_get_signup_blog_title_value()
    bp_signup_blog_privacy_value()
    bp_get_signup_blog_privacy_value()
    bp_signup_avatar_dir_value()
    bp_get_signup_avatar_dir_value()
    bp_current_signup_step()
    bp_get_current_signup_step()
    bp_signup_avatar( $args = ” )
    bp_get_signup_avatar( $args = ” ) {
    ‘size’ => BP_AVATAR_FULL_WIDTH,
    ‘class’ => ‘avatar’,
    ‘alt’ => __( ‘Your Avatar’, ‘buddypress’ )
    bp_signup_allowed()
    bp_get_signup_allowed()
    bp_blog_signup_allowed()
    bp_get_blog_signup_allowed()
    bp_account_was_activated()
    bp_registration_needs_activation()
    bp_mentioned_user_display_name( $user_id_or_username )
    bp_get_mentioned_user_display_name( $user_id_or_username )
    bp_get_option( $option_name )
    bp_ajax_querystring( $object = false )
    bp_last_activity( $user_id = false, $echo = true )
    bp_user_has_access()
    bp_user_firstname()
    bp_get_user_firstname()
    bp_loggedin_user_link()
    bp_get_loggedin_user_link()
    bp_loggedinuser_link()
    bp_displayed_user_link()
    bp_get_displayed_user_link()
    bp_user_link()
    bp_displayed_user_id()
    bp_current_user_id()
    bp_loggedin_user_id()
    bp_displayed_user_domain()
    bp_loggedin_user_domain()
    bp_displayed_user_fullname()
    bp_get_displayed_user_fullname()
    bp_user_fullname() { echo bp_get_displayed_user_fullname()
    bp_loggedin_user_fullname()
    bp_get_loggedin_user_fullname()
    bp_displayed_user_username()
    bp_get_displayed_user_username()
    bp_loggedin_user_username()
    bp_get_loggedin_user_username()
    bp_current_component()
    bp_current_action()
    bp_current_item()
    bp_action_variables()
    bp_root_domain()
    bp_get_root_domain()
    //Conditionals
    bp_is_blog_page()
    bp_is_my_profile()
    bp_is_home()
    bp_is_front_page()
    bp_is_activity_front_page()
    bp_is_directory()
    bp_is_page($page)
    bp_is_active( $component )
    bp_is_profile_component()
    bp_is_activity_component()
    bp_is_blogs_component()
    bp_is_messages_component()
    bp_is_friends_component()
    bp_is_groups_component()
    bp_is_settings_component()
    bp_is_member()
    bp_is_user_activity()
    bp_is_user_friends_activity()
    bp_is_activity_permalink()
    bp_is_user_profile()
    bp_is_profile_edit()
    bp_is_change_avatar()
    bp_is_user_groups()
    bp_is_group()
    bp_is_group_home()
    bp_is_group_create()
    bp_is_group_admin_page()
    bp_is_group_forum()
    bp_is_group_activity()
    bp_is_group_forum_topic()
    bp_is_group_forum_topic_edit()
    bp_is_group_members()
    bp_is_group_invites()
    bp_is_group_membership_request()
    bp_is_group_leave()
    bp_is_group_single()
    bp_is_user_blogs()
    bp_is_user_recent_posts()
    bp_is_user_recent_commments()
    bp_is_create_blog()
    bp_is_user_friends()
    bp_is_friend_requests()
    bp_is_user_messages()
    bp_is_messages_inbox()
    bp_is_messages_sentbox()
    bp_is_notices()
    bp_is_messages_compose_screen()
    bp_is_single_item()
    bp_is_activation_page()
    bp_is_register_page()
    bp_the_body_class()
    bp_get_the_body_class( $wp_classes, $custom_classes = false )

    #104771
    TimCarey
    Participant

    Every time I deactivate BuddyPress plug in e-mail start getting sent again for new users and a new blog sites from multisite. When I activate and BuddyPress plug in again they don’t get sand. It must be something with buddy press plug in.
    What is BuddyPress doing to emails to send them now and differently.

    #104427

    I need this solution too. activation email is not going to users.

    #19540
    akarimov
    Member

    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?

    #104027
    Boone Gorges
    Keymaster

    OK, I get why you might want BP_ENABLE_MULTIBLOG now. My bad.

    I just did a test on a local installation and registration on subsites seemed to work fine – no redirects. Maybe I’m missing something? Here’s what I did:
    1) enabled BP_ENABLE_MULTIBLOG in wp-config.php
    2) created a secondary blog and enabled bp-default on that blog
    3) Visited the secondary blog as a non-logged-in user
    4) Clicked on “create an account” just above the login box (example.com/subsite/register)
    5) The registration page loaded correctly – no redirect to the main blog. I filled out the registration info and submitted
    6) Got an activation email and successfully activated my account

    Is it possible that this is a theme issue? Do the BP themes that you are using for the portals have the necessary registration templates? (registration/activate.php and registration/register.php)

    #19152
    thealchemist
    Member

    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?

    Or, as an alternative, I want a Register page that does the following:

    – Option to use Janrain Engage
    – uses reCAPTCHA or an arithmetic challenge
    – forces minimum password length and displays password strength/match
    – Shows disclaimer text, with option to require users check box to Accept Agreement
    – Shows privacy policy text, with option to require users check box to Accept Agreement
    – sends customized activation email to non-Janrain registrations
    – sends customized username/password email to non-Janrain registrations

    I have all of this capability now, just not with BuddyPress.
    If anyone knows of an existing solution for doing this with the BP login and registrations, that is fine, too.

    Thanks

    #103727
    Paul Wong-Gibbs
    Keymaster

    It’s nothing to do with BuddyPress or WordPress. It’s probably more likely due to throttling of emails sent on your godaddy account. I’d start by getting in contact with godaddy support and asking them what the situation is.

    josue munoz
    Member

    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:

    <input type="text" name="signup_username" id="signup_username" value="” />

    <input type="text" name="signup_email" id="signup_email" value="” />

    <input type="submit" name="signup_submit" id="signup_submit" value=" →” />


    Dave Wright
    Participant

    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???

    Virtuali
    Participant

    No, I would not recommend going to an earlier version of WP, the last few are critical security updates.

    With the mail plugin, it should work. I am not saying it will pop up immediately, it might take a few minutes, but it should be there sometime.

    ethanvandal
    Member

    I wonder if reverting to an older WP installation will fix the Activation Email problem… I have seen many people mention previous WP versions that they have made it work for.

    I installed the BP Disable Activation plugin available here: http://crashutah.com/

    Running BP 1.2.7 on WP 3.0.4! I’ll post again once I update to the new WP 3.1 and test it with my current PB installation.

    I will also try your suggestion of installing Mail From.

    Thanks,
    The Vandal

    Virtuali
    Participant

    Buddypress, as mentioned many, many, many times, is wired through the wordpress emails.

    Buddypress has absolutely nothing to do with the emails. So don’t blame it on BP, there is nothing bp can do for the activation email really.

    As through searching on forums, this issue is rising problems after problem. Bluehost seems to be big with it, so try the “Mail From” plugin.

    ethanvandal
    Member

    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!

    #103377
    techguy
    Participant

    Did you try the mail-from plugin or all the other solutions to the activation email not sent threads in the forum?

Viewing 25 results - 1,351 through 1,375 (of 1,893 total)
Skip to toolbar