Search Results for 'registration'
-
AuthorSearch Results
-
August 5, 2010 at 12:02 pm #88100
In reply to: Email notification not working
aduggan
Participantwp3 sends new registration password emails without problem on bluehost – simplescripts or manual setup… until buddypress is installed. It then stops.
Problems with such a fundamental part of the software doesnt bode well for buddypress – Im starting to think it was better to just cough up the money to Ning.com and save the stress, grey hairs and months of leisure time likely lost.Will try the mail from plugin but if other long roundabout fixes are required to send an email friom buddypress its not worth the trouble.
August 5, 2010 at 2:26 am #88059dallen49
MemberI have the same problem, IE8 doesn’t display the crop tools with an uploaded avatar image. The crop tool works fine in Firefox and Safari. Have you ever solved this issue, I can’t seem to find an answer anywhere on the forum?
Thanks
August 4, 2010 at 5:09 pm #87996In reply to: GivingSports.com
justbishop
MemberLooks good, but I got the following errors at the “accept-invitation” link you posted:
Warning: Division by zero in /home/givingsp/public_html/wp-content/themes/fishbook-buddypress-buddypack/registration/register.php on line 359
Warning: Division by zero in /home/givingsp/public_html/wp-content/themes/fishbook-buddypress-buddypack/registration/register.php on line 365
August 4, 2010 at 7:30 am #87953In reply to: How to make a private community?
Tyler
ParticipantHow do I redirect to the wordpress login page and not the buddypress registration page? I want to create all the user accounts myself and prevent random people registering for my site. Thanks!
August 4, 2010 at 6:03 am #87940Paul Wong-Gibbs
KeymasterI agree it’s the wrong way around. I’m advertising my own plugin here, but what I have done on some sites is use the Welcome Message part of Welcome Pack to send a private message to the new user and to say hello and remind them to complete their profile / picture, etc.
August 4, 2010 at 1:35 am #87924miri
MemberAnd I was wondering just the opposite: is it possible to disable the uploading of avatars until the account is confirmed via the confirmation email? It seems whack to allow file uploading before someone has confirmed their registration.
August 3, 2010 at 12:24 am #87796In reply to: Sign Up Tab is Missing
techguy
ParticipantTurn on registration in the BP or WP admin (depending on how you installed it.
August 2, 2010 at 8:28 pm #87780In reply to: New user Registration Problem — NO Confirmation Mail
Gabriel Fowler
ParticipantOne thought: use plugin: BP Disable Activation, to remove the step of email activation altogether. You should still be able to get users’ emails when they sign up. I use SI CAPTCHA at registration to filter spam. My site is still in development, no users, so I can’t speak to these issues for you. Just a though as I said. Good luck.
August 1, 2010 at 5:41 am #87637techguy
ParticipantThis is addressed 100 times on here. You have to enable registrations to make it stop redirecting. In the admin it’s under General->Settings for WP and under Options for WPMU.
July 31, 2010 at 1:45 pm #87596In reply to: bettercodes.org
gottowik
Participant@Anton Thanks! If you guys like what we are doing we keep up the hard work…
Captcha is integrated in the template file and by just adding a small action to bp_signup_validate:
Template:
https://svn.bettercodes.org/bettercodes/trunk/bettercodes/bc-themes/bc-default/registration/register.php (line 186)
Action:
https://svn.bettercodes.org/bettercodes/trunk/bettercodes/bc-core/bc-core.php (line 558)If you need more help just drop me a PM on bettercodes. ok?
July 31, 2010 at 6:05 am #87561In reply to: Template Notice on Registration Error
techguy
ParticipantIt was easy. Luckily I was able to figure it out. Plus I could have done most of it in the theme too. The real key was that I needed to figure out how the errors were being passed on the registration page. Then, I figured they had to be in $bp and they were. Here’s the code I used in bp-custom.php
function registtration_screen_message_on_error() {
The message I want to appear for the user.
}
add_action( ‘template_notices’, ‘registtration_screen_message_on_error’ );To get the errors and only display it if there are errors I used $bp->signup->errors
Just thought I’d share.
July 31, 2010 at 6:00 am #87559In reply to: bettercodes.org
Anton
Participant@gottowik – well done. Looks awesome. How did you get the re captcha to work on the registration page? Care to share?
July 30, 2010 at 9:12 pm #87531In reply to: bettercodes.org
techguy
ParticipantInteresting way to get to the registration page with just the username. I also like how you dealt with the only lowercase username issue. You might also check out this solution that r-a-y put together: https://trac.buddypress.org/ticket/2207
Page looks pretty good, but as you said in your blog, I’m not sure it completely communicates your message of what the site can do for new users.
July 29, 2010 at 8:06 pm #87401In reply to: New user Registration Problem — NO Confirmation Mail
M W
ParticipantI am having this problem too! Extremely frustrating…new users are complaining they can’t log in. They are in limbo, marked as spammers because the confirmation email never went out. We noticed if I as an admin delete their account and tell them to re-register, they then get the email and complete the process successfully. (??)
July 29, 2010 at 10:24 am #87346deadlyhifi
ParticipantI’ve just experienced this and have come up with a fix:
function custom_bp_adminbar_login_menu() { global $bp; if ( is_user_logged_in() ) return false; $redirecturl = $bp->root_domain . '/wp-login.php?redirect_to=' . urlencode( $bp->root_domain ) . esc_url( $_SERVER ); echo ' ' . __( 'Log In', 'buddypress' ) . ' '; // Show "Sign Up" link if user registrations are allowed if ( bp_get_signup_allowed() ) { echo ' ' . __( 'Sign Up', 'buddypress' ) . ' '; } } remove_action( 'bp_adminbar_menus', 'bp_adminbar_login_menu', 2 ); add_action( 'bp_adminbar_menus', 'custom_bp_adminbar_login_menu', 2 );
Drop that into your functions.php file.
It’s the same as the standard function except it appends the
$bp->root_domain
with$_SERVER
.
I’m not sure if this is a feature or something that’s been overlooked and needs reporting in trac. Also on different servers I’ve had differing results with php$_SERVER
based stuff so I’m not sure if it will work everywhere. It works on the server I’m using anyway.July 29, 2010 at 6:01 am #87327In reply to: Template Notice on Registration Error
techguy
ParticipantSeems like this should be a pretty easy one. For some reason, I can’t ever get the template notices to appear when I try to call them. Must be a timing issue of when I call the template notice and then it finally gets displayed.
July 28, 2010 at 4:40 am #87232In reply to: Registration Page
dlmfisher
MemberFixed! I went back to the database, searched on the pre-propagated terms, and found them in user “0” fields for all x-profile table rows, and deleted the responses. Everything’s now blank as it should be.
July 26, 2010 at 10:18 pm #87108jordashtalon
MemberI downloaded an older version of the plugin and it doesn’t auto pull the facebook avatar but at least they can change their avatar if they choose (which is more important) AND they can auto login with Facebook without going through the registration process which is very fluid.
July 25, 2010 at 12:44 pm #86930In reply to: What happened to "Add Prebuilt Field''
Ali Erkurt
ParticipantI think this option should come back. Because I want to add e.g. Country field to the registration page. I have to add the countries one by one… How can I do that without losing time? With that option of course… We want that option back
July 23, 2010 at 5:01 pm #86768Joe
ParticipantI think I may have found a solution. I edited wp-login on line 437:
if ( is_multisite() ) {
// Multisite uses wp-signup.php
wp_redirect( apply_filters( ‘wp_signup_location’, get_bloginfo(‘wpurl’) . ‘/wp-signup.php’ ) );
exit;I just commented out those lines so that there is no redirect, and it seems to be working. My one concern is that I am not using wp-signup, like WP 3.0 Multisite registration is intended to do. Will there be any issues down the road with users being improperly registered or anything like that? What is the real difference between “wp-signup.php” and “wp-login.php?action=register” anyway?
Thanks!
July 23, 2010 at 4:45 pm #86761r-a-y
KeymasterHey hachimaki,
Your needs would need to be custom-coded. When a user creates a blog, they have the option to select its privacy. A possible solution involves checking if the blog in question is private; if so redirect to the registration page, if not, leave open to public.
July 23, 2010 at 3:27 am #86719Pisanojm
ParticipantI am so thankful for this forum and people like you on it. I apprecieate your feedback. Since the people that I dropped never completed their registration (i.e. never were validated) They were never added to those tables… so it looks pretty clear to me, I don’t see any stream/member info…because they never were added (lost in limbo somewhere until validation I guess). @techguy
July 22, 2010 at 5:20 pm #86655r-a-y
KeymasterActually it is possible to bypass BP registration using the wp_insert_user() function.
It *should* be possible by overriding the /registration/register.php template file in your child theme. But all the good stuff like activating an account would be gone. However, you say you want to use WP’s registration system? Would require a BP core hack I believe.Changing the BP_ROOT_BLOG wouldn’t do a thing since BP is activated network-wide.
July 22, 2010 at 2:49 pm #86628In reply to: Sign in / Registry button on the top bar
JackTheKnife
ParticipantHave got Registration Page, created new user as contributor, but when I went to the Log In I can’t log in as that new user. Any idea why? Thanks
July 22, 2010 at 2:12 pm #86553Joe
Participantso there is no way to escape this? I ask because my site is not based around a user community, that is just one feature. Therefore, I don’t want every registration to be based around buddypress.
One thing that might help matters –
I have the buddypress part of my site set up on it’s own wordpress install (multisite 3.0). Maybe I can make it so the buddypress registration isn’t applied to the entire network, but just the buddypress site.I already tried adding the following line to my wp-config:
define( ‘BP_ROOT_BLOG’, 2 );However, it hasn’t seemed to make a difference.
Anyone?
Thanks again. -
AuthorSearch Results