Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'activation email'

Viewing 25 results - 1,101 through 1,125 (of 1,244 total)
  • Author
    Search Results
  • Anton
    Participant

    on wpmu it sends the activation email and on single wp it doesn’t. There might be a workaround for this and maybe a plugin.

    mingya
    Member

    I have the same question on this particular issue too.

    How to setup email activation for new user on single WP + buddypress, exactly like registrating with http://testbp.org/?

    #66375
    andrew_s1
    Participant

    What does the link in the activation email look like? What’s the “.php” bit of the URL, specifically? (is this in WPMU?)

    #66368
    ajohnson
    Member

    Found a huge problem with this (or though it seems)

    Whenever you create an account, the link to activate your account in the activation email won’t let you it through because of the redirects. Anyone else having this problem?

    Thanks for the help and the great plugin. A small but mighty one!

    #65707

    In reply to: Activation Mails

    The Badger
    Participant

    I’m confused by the lack activation emails too… surely it should be setup by default!?

    #65286

    In reply to: Tried HipHop ?

    Windhamdavid
    Participant

    Wow, that’s a really impressive setup you got going at http://kodingen.com. Thank you for posting this ~ I wouldn’t know where to start with hiphop yet, but I registered and noticed that the activation email is missing a backslash. I had read this statement from @rasmus and figured it’s performance gains and high scaleability would also depend on a series of other configurations like memcached and sql optimization. But something like this could prove to be as Rasmus puts it, escape from ‘framework soup’. Although wordpress.com seems to be running top notch on top of Nginx, but I’m sure they got all kinds of hardware and configuration tweaks going on.. ;) // all the same thanks for for the experimenting and good luck with it.

    Hugo Ashmore
    Participant

    I’m somewhat at a loss as to why people debate this issue or try and state it’s a WP issue as logically that doesn’t make sense?

    As jfigura posts this is an inherent problem, I have it on a production install and it must be hugely confusing for users, and yes the only approach so far has been to modify the text and remove the WP password from the confirmation emails.

    Further testing points to the initial blog registration as being possibly the issue:

    Clean install of WP MU 2.9.1 & BuddyPress 1.2 no significant further plugins activated.

    Test Condition 1:

    WP MU with BuddyPress disabled – admin options -> Allow New Registrations ->’Only user account can be created’

    Register new user

    Receive confirmation email of new registration along with Activation key

    Activate registration

    Receive second email with account username and pass

    All as expected!

    Test Condition 2:

    WP MU with Buddypress activated – admin options for registration still set as ‘User Account only’

    Register new user

    Receive confirmation and activation key

    Activate registration – screen message stating ‘you can now login with user name and password you set’

    No further emails sent!

    Test Condition 3:

    WP MU BuddyPress still activated – admin options -> Allow New Registrations -> ‘Enabled. Blogs and user accounts can be created.’

    Register new user as well as a blog!

    Receive confirmation and activation for account and new blog

    Activate registration – screen message ‘you can now login with password you set etc etc’

    Receive further email from WP! (copied below)

    Dear User,

    Your new *********.co.uk Blogs blog has been successfully set up at:

    http://eggs.********.co.uk/

    You can log in to the administrator account with the following information:

    Username: eggbert

    Password: 5f112917

    Login Here: http://eggs.**********.co.uk/wp-login.php

    We hope you enjoy your new blog.

    Thanks!

    –The Team @ ********.co.uk Blogs – Sent via Site Admin options email

    So having new accounts and new blogs enabled at initial registration triggers the sending of the ‘Welcome Email’ noted above.

    clearly this is confusing as it contains the WP generated password.

    Why is it that BP registration doesn’t disable / override the WP registration completely? To my mind this IS a BP issue, but I may very well be wrong on that score as I don’t profess to have a deep understanding of the core coding involved here.

    On a sidenote:

    Testing this and the slightly odd behavior of ‘Allow New Registrations’ where option for ‘only logged in users can take a blog’ actually seems to prevent all registrations. It occurred to me that on a social community ,and from our experience, blogs are not necessarily what users register for and that I would prefer the option to have a blog be only available for registered users from their account options. what actually happens is that registration is disabled completely! Not the effect I desired. I realise this IS a WP MU issue but is simply daft behavior and that set of options needs to be re-worded to be a lot clearer as to what it really does.

    It would be great to be able to restrict blog signup to users already with account set up and remove, completely, the option to take a blog on initial signup, I have done this by simply scripting out the option / section for registering a new blog in BP register page but feel it’s not the best approach?

    https://trac.buddypress.org/browser/trunk/bp-core/bp-core-activation.php#L79

    There are two ways for this email to still get sent:

    1.) Your active theme does not have either /register.php or /registration/register.php in it.

    2.) You are an admin that has just added a user to your site.

    If either of those things are true, the email will get sent out.


    If you are hard pressed to make this issue go away, try adding this to your functions.php or bp-custom.php.

    /* Unhook BuddyPress wpmu email blocker */
    remove_filter( 'wpmu_welcome_user_notification', 'bp_core_disable_welcome_email' );

    function block_wpmu_email() {
    if ( is_admin() && $_GET['e'] )
    return true;

    return false;
    }
    /* Rehook custom function */
    add_filter( 'wpmu_welcome_user_notification', 'block_wpmu_email' );

    The above routine doesn’t help us test this issue any, but it does stop the email from going through unless you add a user yourself.

    Mike Pratt
    Participant

    keep in mind, it’s not “broken”. We are debating the merits of one way versus the other. There is not an email as you suggest in BP/WPMU just Activation. most sites that I join these days do not send their passowrds on signup, usually activation emails. You could always write a plugin that sends the password.

    snark
    Participant

    Yes, I am running BP 1.2 beta with single-user WP, not WPMU, and it’s a fresh install of both. It’s not a huge issue, I just think philosophically that after a user signs up for a service, they should receive a confirmation email that includes a link to the site, along with their username and password, even if they chose them themselves. This, after all, is what happens with BP in WPMU, although the latter does include the activation link which I assume has been deemed to be unnecessary in the single-user WP version.

    I know from experience that users forget their logins over time, and while they can use the “forgot” link on the site, I think having an initial registration acknowledgment saved in email would be beneficial for some users. Also, it gives the site publisher an opportunity to send a greeting message to each new subscriber.

    So…any thoughts on how to make this work for me, or whether it will be fixed in the next version of BP? Thanks.

    Mike Pratt
    Participant

    @snark didn’t realize you are single user WP so no activation email

    Mike Pratt
    Participant

    There is not going to be an email sent with username and password (not really necessary given they just chose one) There is, in fact, an Activation email. Did you not receive that?

    (Recall the annoyed furor over site devs complaining that their users had to wait for an email with their password. Consider that addressed!)

    Mike Pratt
    Participant

    @snark You forgot to mention the Activation email. Is your new user not receiving one? I just did a test registration and immediately received an email. While I agree with @Peter that plain text isn’t so bad but I also think it’s not so necessary to send the password the person literally just chose. The always have the Forgot Password link if they forgo it seconds after the fact. No real need as I see it to add a filter.

    peterverkooijen
    Participant

    @snark, I simply removed the function bp_core_disable_welcome_email() from bp_core_activation.php. But then the password in the welcome email is wrong, as discussed here. Haven’t been able to come up with an explanation/solution for that… :-(

    r-a-y
    Keymaster

    Here’s the rationale behind disabling the welcome email as quoted in bp-core-activation.php:

    * Since the user now chooses their password, sending it over clear-text to an email address is no longer necessary. It’s also a terrible idea security wise.

    I’m going to sway a little to Peter’s side and say that BP should leave this option to the site admins. I actually think there should be more options for the administrator on a fresh install.

    snark
    Participant

    Still not working. I did find the filter itself in the file /plugins/buddypress/bp-core/bp-core-activation.php:

    add_filter( ‘wpmu_welcome_user_notification’, ‘bp_core_disable_welcome_email’ );

    I suppose I could just delete that line to remove the filter, but then every time BP is updated it’ll probably get overwritten and I’ll forget all about it. Not sure why your filter hook didn’t work. Any ideas?

    Thanks a million for your help — I really appreciate it.

    #61720
    peterverkooijen
    Participant

    Which registration emails do you mean? The WPMU welcome email is disabled in BP; see function bp_core_disable_welcome_email() in bp_core_activation.php. It’s a feature…

    dlittle800
    Participant

    Is it possible to have the welcome email include the RIGHT password? (i.e. the password that was entered upon registration)

    Any idea how?

    #60945
    peterverkooijen
    Participant

    I’d like to know this as well. You could probably put this on activate.php somehow.

    Also the standard WPMU welcome email is sent on first login. That works via a function in wpmu-functions.php:

    function wpmu_welcome_user_notification($user_id, $password, $meta = '') {
    global $current_site;
    ...

    wp_mail($user->user_email, $subject, $message, $message_headers);
    return true;
    }

    I don’t see a hook in that function. It’s called/triggered from function wpmu_activate_signup in the same php file.

    wpmu_activate_signup is called from function bp_core_screen_activation in bp-core-activation.php.

    Perhaps you could add a redirect there to the mandatory extra fields? There are already some if statements there, one with this:

    bp_core_redirect( $bp->root_domain . '/' . BP_ACTIVATION_SLUG );

    You could add your own? Just guessing, wouldn’t know what it would look like…

    peterverkooijen
    Participant

    There’s not supposed to be any generated password upon activation in 1.1.3. No passwords are ever sent by email in 1.1.3. You may have missed something in the upgrade.

    We had noticed that the welcome email includes a wrong password, perhaps because of different encryption between WP and BP. The password that was entered upon registration still works.

    Note that in 1.1.3 the WPMU is disabled by default. To bring it back you have to remove a function from the core files.

    #60920

    In reply to: Double passwords

    peterverkooijen
    Participant

    Could this also lead to the wrong passwords in the welcome email?

    #60742

    In reply to: Double passwords

    Stef
    Participant

    @r-a-y I’m not using a deprecated theme.

    I have to agree with Peterverkooijen. It doesn’t matter which theme is activated.. the wrong password is being sent. Even with the default theme.

    This is happening when a blog is created at the register process. When only a user is created.. Only the activation mail is being sent.. No Welcome User Email.

    For now I’m going with the tempory fix like Mark.. but hope that this will be fixed in the next update.

    #60674

    In reply to: Double passwords

    Stef
    Participant

    Hello r-a-y,

    Thanks for your response.

    I’m using BP Version 1.1.3 but I’m not sure what a deprecated theme format is.

    I’m using the Social theme from the premium.wpmudev.org site. But having the same problem when using the standard BP theme.

    When signing up without adding a new blog to the account. No account details are being sent. Just the activation email.

    And when signing up and adding a new blog. The account details are being sent but with a wrong (generated) password.

    http://img.skitch.com/20100113-bj8s38agwrcsaacidye4mes2b4.jpg

    Pretty weird huh?

    Thanks for your help btw.

    #60659

    In reply to: Moderate members

    Tom
    Participant

    Is it even possible to make the activation emails get sent to the site admin, rather than to the actual member? That way I can just forward the activation email to the member IF I approve their account.

    Would this work, and how would I go about it?

    #60617

    In reply to: Moderate members

    Tom
    Participant

    Seems that only fixed the admin panel problem.

    However it’s throwing up errors on the front end now.

    To be honest I think this plugin is maybe outdated.

    I’ll list here my site’s configuration, and what errors I’m getting in-case anyone fancies making this plugin work as it should.

    OK.. Groups and Blogs are disabled site-wide (Except for the main site blog).

    The setting “Allow new registrations” is set to “Only user account can be created.”

    And “Registration notification” set to “Yes”

    1st problem (As previously mentioned in this thread)… When I go to the admin panel and try to edit the options for the plugin, and hit save, it throws up the errors that I posted here:

    https://buddypress.org/forums/topic/moderate-members?replies=1#post-33514

    I managed to get rid of those errors by doing as mentioned here:

    https://buddypress.org/forums/topic/moderate-members?replies=1#post-33517

    However… it turns out that was not a fix for the plugin, so I reverted the file back to original state.

    OK, I couldn’t edit the emails that would be sent out due to those errors, but I could of worked around that (editing within the file itself)… so I continued to the next step, which was to try and create a new account, to see if the plugin actually done what it’s supposed to.

    After entering all my required fields, and hitting the submit button, I was taken to the upload avatar page. I was also shown the “Check your email address for your activation email” notice. Also, at the top of the page these errors appeared:

    Warning: implode() [function.implode]: Invalid arguments passed in /home2/puezq/public_html/mysite.com/v2/wp-content/plugins/bp-registration-options/bp-registration-options.php on line 639

    Warning: implode() [function.implode]: Invalid arguments passed in /home2/puezq/public_html/mysite.com/v2/wp-content/plugins/bp-registration-options/bp-registration-options.php on line 642

    Since I know only very little php, I had a look to see what those lines were in the plugin php file, but done nothing with them. Here are those lines:

    639 $bp_groups_str = implode(",", $bp_groups);

    642 $bp_blogs_str = implode(",", $bp_blogs);

    So I’m guessing these errors are showing because I have blogs and groups disabled on the site?

    However the plugin php file is full of terms relating to blogs and groups, so I saw no point just removing those lines from the file as other errors would appear from somewhere… surely?

    Anyway, to see what happened next- I then uploaded an avatar, successfully. The errors at the top of the page disappeared when it was uploaded.

    I then clicked on the activation link in the email I received, and logged into the site. I was able to EDIT my profile and browse the site pages normally, but not able to view member profiles, my own public profile, or even view the members search page.

    I then received an email saying there was a new member registration (to my admin email)… and the notice also appears in the admin panel saying there’s a user awaiting moderation.

    And that’s where Im at.

    Come to think of it, and after having read through this post several times now- It seems that the plugin’s actually working… with the exception of those errors that are flagging up in the admin panel (when editing the emails that will be sent out), and at the top of the front end page. Hopefully one of you guys can tell me how to get rid of those errors… or at least the ones on the front end. :-)

    This truly does sound like a fantastic plugin, but with non-existent support at the forum link in the README.txt file, I think it can only carry on living if one of you geniuses are willing to fix the bugs.

    Unless anyone knows of another plugin that will allow new member moderation? (I have searched, but couldnt find anything).

Viewing 25 results - 1,101 through 1,125 (of 1,244 total)
Skip to toolbar