Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'disable registration'

Viewing 25 results - 301 through 325 (of 492 total)
  • Author
    Search Results
  • cupid4
    Participant

    well, I think I will really back to my phobia of plugins! this plugin just ripped me of 20 $ of google adwords advertising my website, and it caused any user who tried to sign up with creating blog in registration to tell them please check your activation e-mail! (theopposite of what it should do!) and this time it’s not sending e-mails at all even after long time because the plugin did it’s job at this side only!

    “”” preferably not a plugin, Is there some code edits can achieve this? “””

    you can see I said that for a reason…so back to where I was…

    anybody know how to change this without a plugin? it should be a basic feature like in phpbb or coppermine to choose weather to activate your users by mail or immediately let them log in…
    last hope, perhaps @boonebgorges , @johnjamesjacoby can help about that?

    cupid4
    Participant

    @andrea_r the reason I have plugins phobia is when I find plugin like this that was last edited a year ago :) however I came over my phobia and installed this plugin, it worked as supposed, but get the user back to the home without giving any message saying successful registration ( the auto login after registration doesn’t work, perhaps cause plugin wasn’t updated, ) so you have any idea how to make this redirect to custom page I will create to say” you have successfully became a member of our holy website, without even touching your e-mail ) lol sorry for this funny side, I’m just happy today :)

    #113780

    In reply to: Blog posts mixed up

    handsunc
    Member

    THANK YOU!! That fixed it!. It was a plugin i had installed to disable users who registered from creating posts until they were approved. I had about 10 spammers join the site in 2 days of allowing registration. Now will have to ask the people in the group to email me and I can add them manually. Any ideas on preventing non-members from registering? Thanks again, Carin

    #113680
    squirrel1
    Member

    The only way I was able to surmount the same issue (emails not being sent, i.e. new user notification, password reset emails) was to disable the following plugin:

    “BP Disable Activation”
    https://wordpress.org/extend/plugins/bp-disable-activation/

    Once I disabled this plugin, the missing emails flowed again.

    As such, I returned the site to its default state of requiring new users to confirm their accounts.

    #113627
    webmystery
    Participant

    I’m having the same problem as Tonyone, and it goes away when Buddy Press is disabled. The first problem stated in this thread, the forgot password feature is not sending emails, is different than what the “me toos” are describing.

    With BuddyPress enabled
    A new user who creates an account gets their account notification email
    The Fast Secure Contact Form works and sends email
    The Email Users plugin works
    BUT
    The Bulk Password Reset plugin does Not work, neither does the ‘Get New Password’ on wp-login.php. Both of those trigger this error:
    The e-mail could not be sent.
    Possible reason: your host may have disabled the mail() function…

    This may not be a mail problem but a password rest problem pulling the wrong error message out of … someplace

    I’m on a Bluehost server, running WP 3.1.3 and BuddyPress 1.2.8

    #113105

    ok try this :

    use this plugin to manually active users that are not activated yet : https://wordpress.org/extend/plugins/wp-activate-users/

    and use the below code in your functions.php .to disable email activation.

    function disable_validation( $user_id ) {
    global $wpdb;
    $wpdb->query( $wpdb->prepare( “UPDATE $wpdb->users SET user_status = 0 WHERE ID = %d”, $user_id ) );
    }
    add_action( ‘bp_core_signup_user’, ‘disable_validation’ );
    function fix_signup_form_validation_text() {
    return >false;
    }
    add_filter( ‘bp_registration_needs_activation’, ‘fix_signup_form_validation_text’ );

    #109975

    In reply to: Friend Referral System

    Bowe
    Participant

    If you want to completely disable public registrations, and only want to set up a invite only BuddyPress community, check out this plugin as well: https://wordpress.org/extend/plugins/wordpress-mu-secure-invites/

    Should work in combination with the plugin Mercime mentioned :-)

    PJ
    Participant

    Ahh, thank you @mercime. If I disable Secure Invites, will the registration process return to normal?

    #107922
    fizk
    Member

    r-a-y,

    Thanks, I’ve disabled registration. Hopefully this stops the bots completely.

    #107816
    r-a-y
    Keymaster

    Disable bbPress registration on your external install:
    https://bbpress.org/forums/topic/howto-disable-registration

    #106902
    Brajesh Singh
    Participant

    Easy way, On wpms 3.0.x
    Disable the blog signup from SuperAdmin->Options ->Registration Settings
    and select the second option (User account may be created). If you are on the wpms 3.1, you will have to go to NetworkAdmin->settings->Registration Settings and do the same.

    On your users request, you can still create an account as you are the site admin.

    #105320
    r-a-y
    Keymaster

    Make sure you have turned on registration in WordPress.

    if you’re on single WordPress, navigate to “Settings > General” and check “Anyone can register”:
    https://codex.wordpress.org/Settings_General_SubPanel

    If you’re on WP multisite, navigate to “Super Admin > Options” and under “Allow new registrations”, make sure registration is not disabled.

    Then, in your sidebar, use “ to get the signup url.

    #105284
    justinwhall
    Participant

    Well, the admin bar propagates through all sites no matter what theme I have activated. I’m sure I can find a way to disable that, just wasn’t sure if there was a way via the GUI.

    That, and all the registration links lead to the site that is installed in the main directory. This isn’t likely a BP thing but a shared DB thing I suspect?

    proshot
    Participant

    I simply use the facebook connect. and have disabled any other form of registration or login.
    and i only get 1 user unless they have multiple facebook accounts and i get the benefit of avoiding the need for any other authentication

    since facebook spend millions confirming its users i get to use that development for free.

    I do know however that 99.9999 % of my users will be facebook users

    So when i look at yoru delema i wonder why you want to offer all those ways and in turn CREATE your own problem

    Paul Wong-Gibbs
    Keymaster

    If you want to disable BP’s registration and user account activation pages: In your functions.php or in a custom plugin:

    `remove_action( ‘wp’, ‘bp_core_screen_signup’, 3 );`

    sevenos
    Member

    I think I’ve found an alternative to that plugin..

    http://www.crashutah.com/blog/juanchito/2010/05/12/buddypress-disable-email-activation-my-first-buddypress-plugin/

    And I just tried this.. works great!

    Still, If anyone can help me with the system mail block please help :/

    stefaane
    Member

    i don’t know what’s causing it, and i don’t know the solution

    but until you know, you can avoid the problem with this plugin: http://buddydev.com/plugins/bp-auto-activate-auto-login/
    with this plugin verification mails are disabled

    #101770
    Xevo
    Participant

    Wpmu? There’s WordPress with multisite now a days?

    And no you can’t use the native register page with BuddyPress.

    #101147
    @mercime
    Participant

    There’s a “Sign Up” link notice in adminbar if you allow registration, beside the “Login” link see http://testbp.org/

    Registration is disabled by default, so if you’re not seeing the Sign Up link, you should go to admin dashboard > Super Admin > Options – Registration Settings – Allow New Registrations – check any other than default “Registration is disabled”

    Edit- for single WP install, go to dashboard > Settings > General Settings – Membership – Anyone can register and below that, you can choose Suscriber role.

    #100868
    jwack
    Participant

    Every morning I wake up, delete about 30 blogs and then delete the users. I will just learned how to check the access logs (I have my own server and just figured out how to check them lol) so I will pay attention to them and see what I can find out.

    #100822
    Andrea Rennick
    Participant

    “WOW, I did the above mentioned items and I am still getting hammered with spam blogs. I have no idea what to do now, I am already making a sacrifice by taking away blog creation during signup. “

    Start looking at access logs. If you have no way to check how they are getting in, then you have very little luck in stopping them.

    have you DELETED the exisiting spam users? Because if you;re just deleting the blogs they create and leaving the spam users…. they just create more.

    #100813
    jwack
    Participant

    @lilyo Thanks for your help :-)

    #100806
    Lily
    Participant

    @jwack good luck!

    #100805
    jwack
    Participant

    I really like the idea of editing the plugin to make blog registrations require a password. I will take a look at the code but I already know its out of my league as well. Perhaps I will contact him on the main WP site and see what he thinks. That seems like it would be a useful plugin on its own.

    #100801
    Lily
    Participant

    @jwack
    – Yep

    – Yes, it’s not the most accessible-friendly way to prevent splogging but we do require people use the code in order to register at all, instead of a captcha. And we haven’t had a single spammer since. But for the few who don’t know it, we also provide the link where they can easily find out what it is, especially if they feel too lazy to look it up (I would be, heh).

    Since our targets are mostly local people or former residents, they tend to know what the zip code is. If you have a genre-specific site, perhaps a similar technique could be applied? Or maybe a developer here could help you to modify the code so it applies only to the blog registration? I’m more of a front-end user/designer so altering other dev’s code is way out of my league >_<;

Viewing 25 results - 301 through 325 (of 492 total)
Skip to toolbar