Search Results for 'registration'
-
AuthorSearch Results
-
September 14, 2011 at 2:33 am #120018
In reply to: Not receiving registration confirmation email
Apposl
ParticipantThis SOB Gmail is spamming the verification emails. Thank you, aces. What a simple thing I forgot to look at.
September 14, 2011 at 1:17 am #120017In reply to: Not receiving registration confirmation email
aces
ParticipantIf you have never received an email (and it’s not stuck in a spam or junk folder) then your web host may need an extra plugin to use email with WordPress.
https://wordpress.org/extend/plugins/wp-mail-smtp/ ( http://www.callum-macdonald.com/code/wp-mail-smtp/ ) adds extra email settings to wordpress and has a tool to debug smtp / php mail. This plugin has previously been discussed: https://buddypress.org/?s=wp-mail-smtp ….
Alternatively the codex has another suggestion.
September 13, 2011 at 9:48 am #119966In reply to: User Registration Problems
Bristol CI
ParticipantMany people are having the same problems registering with my site too. It is not clear in the form that usernames must have lowercase and no spaces in it.
Is there a way to allow registers to use capitals and spaces?
Also, is Is there a way to get the error messages come up in a different colour to the rest of the form e.g. highlighted or red, as currently they are in the same colour and easily missed.September 12, 2011 at 5:21 pm #119920kanawey
MemberThank you,
I contact my host, bluehost and they told me that my registration forrm and email confirmation also works fine. But I just created another test user and not received any e-mail.
should I ad this WP-Mail- SMTP plogin as well?
September 12, 2011 at 1:11 am #119898In reply to: Registration Approval Plugin
acurran
MemberMy 3 step solution to this problem is as follows:
1. Install plugin – BuddyPress Pending Activations (https://wordpress.org/extend/plugins/buddypress-pending-activations/)
2. Make hack to plugin function bp_pending_activations_admin() so that it sends an email when a user is activated:
$resendusers = $wpdb->get_results( $wpdb->prepare( “SELECT u.ID, u.user_login, u.user_email, m.meta_value FROM ” . CUSTOM_USER_META_TABLE . ” m, “. CUSTOM_USER_TABLE .” u WHERE u.ID = m.user_id AND m.meta_key = ‘activation_key’ AND u.ID IN ({$userids})” ) );foreach ( $resendusers as $resend ) {
/* Activate the signup */
$user = apply_filters( ‘bp_core_activate_account’, bp_core_activate_signup( $resend->meta_value ) );/* If there was errors, add a message and redirect */
if ( $user->errors ) {
echo ‘There was an error activating this account, please try again: ‘. $resend->user_login;
} else {
$to = $resend->user_email;
$subject = “Your ?????? Account Has Been Activated!”;
$message = “Your account has been activated. Go to http://??????/ and sign in with the username and password that you created when you signed up.nnWelcome to ?????!”;
$admin_email = get_site_option( “admin_email” );
$from_name = “??????????”;
$message_headers = “MIME-Version: 1.0n” . “From: “{$from_name}” n” . “Content-Type: text/plain; charset=”” . get_option( ‘blog_charset’ ) . “”n”;
wp_mail( $to, $subject, $message, $message_headers );
}
3. Redirect activation email to admin (to use as a noitification for admin instead of automatically sending activition key to user) by adding this to functions.php:
function change_activation_email_to($content) {
return get_site_option( “admin_email” );
}
add_filter( ‘bp_core_activation_signup_user_notification_to’, ‘change_activation_email_to’);So the when a new user signs up, they do not get any activation email. That goes to the admin instead. You will need to change the wording in your template to let the user know that they have to wait for manual approval. Admin logs in to WP admin and goes to Pending Activitations and activates the user. An email is sent to user to let them know they have been activated.
September 7, 2011 at 8:43 pm #119710In reply to: BuddyPress Forum Registration Problem for Users
Sensibledogs
MemberI am wondering if I am in over my head with buddypress? On my wordpress dashboard I do not have a site admin for buddypress? I don’t know how that has happened.
September 6, 2011 at 3:06 am #119639In reply to: Trouble Uploading Avatars WP 3.2.1 / BP 1.2.9
transferofhealth
MemberOK – so I’ve (among other things)
1. Created the 404-handler.php and changed my IIS admin to the /404-handler.php
2. Tried the special web.config settings for IIS7 (but I have IIS6) – it made no difference
3. Played with my IIS Admin settings
4. Changed settings in my ini.php file to set the directory target
5. Read a lot of .htaccess coding and mod-rewrites. I think my eyes are bleeding (haha – just kidding)SO I WENT ON TO
1. Deactivated then Deleted BP and all supporting plugins
2. Deactivated the theme I customized and activated the default WP template.
3. Reinstalled BP
4. Activated the BP theme
5. Still won’t let me register, upload avatar, add a group or do anything else.Any ideas?
I am NOT getting a 404 error – but when I enter any new info – new registration, new group, etc., I click “submit” – the form resets, but I’m still on that page. Nothing happens. My upload files are empty of any BP info. My media files DO upload fine.
Thanks in advance to anyone who can (pretty please with sugar on top) solve this mystery!!!!
……
TiffanySeptember 3, 2011 at 6:36 pm #119489In reply to: Registration Problems
ewebber
Participanttry deactivating it to see if that’s what is causing the issue
September 3, 2011 at 6:30 pm #119488In reply to: Registration Problems
shrtgrnnooodles
MemberThe link doesn’t even go to my privacy policy page. Sorry, I’m new to this. I used easy privacy policy plugin for my site.
September 3, 2011 at 6:24 pm #119481In reply to: Registration Problems
ewebber
ParticipantHow are you creating the privacy policy field?
September 3, 2011 at 5:46 pm #119480shrtgrnnooodles
MemberYa, didn’t do that. Thanks very much
.
September 3, 2011 at 5:35 pm #119478ewebber
Participanthave you switched registration on and can you go to yoursite.com/register?
September 1, 2011 at 7:30 am #119349In reply to: BuddyPress 1.5 compatibility for plugins and themes
matuh
ParticipantBuddyPress Registration Options is not working with 1.5. I really need this.
August 31, 2011 at 2:24 am #119300In reply to: auto add friends
Steven Word
ParticipantI’ve created a plugin to help add friends automatically upon new user registration.
August 29, 2011 at 10:35 am #119201In reply to: Confirmation email field in registration
ewebber
ParticipantBP Xtra Signup looks like it does what I need and a bit more!
August 29, 2011 at 9:39 am #119198In reply to: Avatar Upload Problem During Registration
mattcav
MemberEhi @rbbp22, thank you so much for your work on this.
Well, I’ve tried your solution, but the only thing I get is view the avatar changed after the cropping process (on the registration).
When my user is going to load his profile after the login, the avatar will not displayed (there’ll be the default one).
Seems something wrong in the ‘save’ process.
August 26, 2011 at 8:00 pm #119131modemlooper
ModeratorI find this completely odd because BuddyPress does not auto create a username on the registration page from the database. Maybe you have mal-ware or something? Also it could be the browser auto filling.
August 26, 2011 at 4:41 pm #119118Josh Frank
ParticipantThanks to Katrina Willis (http://katrinawillis.com), my partner on the UGN site, for figuring out the issue. Here is how she describes the fix:
“On ugnchicago.com, I finally figured out why my name was displaying in the form field.
In the SQL database, I was the default user (the user with the id=0), so that made my first name display as a default string when you installed the BuddyPress forms (which populates a default into the field). I went in and manually removed that from the database, so we’re clean!”
I hope this helps you all. And check out Katrina’s site, while you are at it!
tagged: @PeterHatch, @modemlooper, @JaredGoyette
August 24, 2011 at 9:27 pm #119020Josh Frank
ParticipantWe are experiencing the same issue. “Katrina” is pre-populated in the First Name field on the registration page at our site, http://ugnchicago.com/register.
It isn’t a local cookie issue; it is showing up across multiple machines, multiple browsers, etc.
Has anyone come up with an answer?
August 23, 2011 at 3:04 am #118885In reply to: 100,000 Members Moved from Ning – Mega Site!
Anointed
Participantthnx for the reminder… I do vaguely remember reading somewhere that bp screws with the registration of usernames with spaces/characters in the name…
btw
love the site, esp the content, right up my alley.August 20, 2011 at 4:52 pm #118772dreadneckla
MemberIt appears that you’ve added a container div to hold the registration form, however, you have not added the code for the registration form itself:
Sign up Form belongs Here!You could copy and paste into your #registerForm div the registration form code contained within the .padder div from bp-default/registration/register.php.
This should put an embedded registration form into your home page.
Hope that helps…
August 14, 2011 at 9:49 pm #118436kriskl
ParticipantIt is a great plugin, just testing it,
I wish more people knew about it,one feature /improvement I would suggest
that after the login, user is not taken to WP backend
but homepage or user profile (in Buddypress)
or at least if there was an option for admin to set where user should be taken after registrationthank you
August 10, 2011 at 11:08 pm #118172In reply to: Activation Code after New Member Registration
Whitefox
MemberOK so I’ve had the same problem and have built a very clumsy workaround.
PROBLEM: When the user click the email verification it sends them to verify.php and logs them in to WP but my Buddypress doesn’t know they are logged in and asks them to login. If the user just ignores the login request there is no problem but users don’t do that so they try to login and get the same “error..please provide a valid activation key” message because the account is already active.
MY RUBBISH ANSWER: The only thing that worked for me was to hide the BP admin bar and handle login links manually then change the text on the verify.php to a simple ‘congratulations, you’re in’ message. The downside of this is that I lost the use of my BP-Sliding-Login-Panel which I love. so I would be very grateful for a real solution to this.
August 10, 2011 at 10:46 am #118127In reply to: Registration fail – page just reloads
Whitefox
MemberI have been working through a similar problem where WP sends an activation email and the new user replies. The user is then logged in to WP but NOT BP…. so if the user tries to login as BP says they should it will generate an error because they are already logged in!
I am having to tell newly registered users to close their browser then re-open and login.
If someone comes up with a more viable option I would be very grateful.
August 10, 2011 at 9:59 am #118125Sofian J. Anom
Participant@DJPaul , I’ve make a ticket: https://buddypress.trac.wordpress.org/ticket/3467.
You’re welcome. -
AuthorSearch Results