Search Results for 'disable registration'
-
AuthorSearch Results
-
August 4, 2011 at 11:56 pm #117727
cupid4
Participantwell, 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?August 4, 2011 at 8:27 pm #117705cupid4
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
June 3, 2011 at 4:34 pm #113780In reply to: Blog posts mixed up
handsunc
MemberTHANK 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
June 2, 2011 at 4:20 pm #113680In reply to: Registration email not being sent
squirrel1
MemberThe 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.
June 2, 2011 at 1:49 am #113627In reply to: Registration email not being sent
webmystery
ParticipantI’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
May 26, 2011 at 11:16 am #113105In reply to: Not all membrs are displayed on members page?
Prince Abiola Ogundipe
Participantok 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’ );April 11, 2011 at 9:09 am #109975In reply to: Friend Referral System
Bowe
ParticipantIf 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
March 29, 2011 at 7:11 pm #109069PJ
ParticipantAhh, thank you @mercime. If I disable Secure Invites, will the registration process return to normal?
March 15, 2011 at 11:59 pm #107922In reply to: Possible security hole [Solved]
fizk
Memberr-a-y,
Thanks, I’ve disabled registration. Hopefully this stops the bots completely.
March 15, 2011 at 12:04 am #107816In reply to: Possible security hole [Solved]
r-a-y
KeymasterDisable bbPress registration on your external install:
https://bbpress.org/forums/topic/howto-disable-registrationMarch 5, 2011 at 4:34 pm #106902In reply to: [Resolved] Disable Blog signup?
Brajesh Singh
ParticipantEasy 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.
February 13, 2011 at 8:31 pm #105320In reply to: How do I add “Sign up”/”Register” button to sidebar?
r-a-y
KeymasterMake 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_SubPanelIf 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.
February 13, 2011 at 2:59 am #105284justinwhall
ParticipantWell, 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?
February 7, 2011 at 11:35 am #104807proshot
ParticipantI 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 authenticationsince 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
January 25, 2011 at 10:31 pm #103849Paul Wong-Gibbs
KeymasterIf 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 );`
January 13, 2011 at 2:58 pm #102759sevenos
MemberI think I’ve found an alternative to that plugin..
And I just tried this.. works great!
Still, If anyone can help me with the system mail block please help
January 13, 2011 at 1:43 pm #102752stefaane
Memberi 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 disabledJanuary 3, 2011 at 4:33 pm #101770In reply to: Buddy Press Registration Disable
Xevo
ParticipantWpmu? There’s WordPress with multisite now a days?
And no you can’t use the native register page with BuddyPress.
December 22, 2010 at 6:30 pm #101147In reply to: Adding Register Notice to Admin Bar?
@mercime
ParticipantThere’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.
December 18, 2010 at 4:27 am #100868In reply to: WTF? Disable Blog creation during registration
jwack
ParticipantEvery 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.
December 17, 2010 at 8:46 pm #100822In reply to: WTF? Disable Blog creation during registration
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.
December 17, 2010 at 6:31 pm #100813In reply to: WTF? Disable Blog creation during registration
December 17, 2010 at 5:55 pm #100806In reply to: WTF? Disable Blog creation during registration
December 17, 2010 at 5:53 pm #100805In reply to: WTF? Disable Blog creation during registration
jwack
ParticipantI 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.
December 17, 2010 at 5:13 pm #100801In reply to: WTF? Disable Blog creation during registration
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 >_<;
-
AuthorSearch Results