Search Results for 'registration'
-
AuthorSearch Results
-
October 25, 2010 at 4:54 pm #96454
Glenn Kilpatrick
ParticipantThanks for your assistance. I struggle with searches as Im never sure what data to put in the search box. I shall read the topic you suggest
October 24, 2010 at 11:10 pm #96368In reply to: New users not showing up in BuddyPress
CJ
ParticipantHey did you find the answer. I’m having the exact same issue. I had a thought. I’m wondering if the people who aren’t showing up did not go to their email and finish the registration process? But anyway if you’ve figured it out it would be awesome if you post the answer.
October 24, 2010 at 3:49 pm #96322Roger Coathup
ParticipantDid you look in the documentation section before posting, or use the search?
This has been covered many times in the forums, and there are sections to read in the Codex Documentation on how to check your site is configured properly.
October 24, 2010 at 3:46 pm #96321rich! @ etiviti
Participanthave them check their spam folder (and proper host config for sending email – maybe the host has trouble with users sending out spam)
buddypress rules for usernames
`
if ( !validate_username( $user_name ) || in_array( $user_name, (array)$illegal_names ) || $user_name != $maybe[0] )
$errors->add( ‘user_name’, __( ‘Only lowercase letters and numbers allowed’, ‘buddypress’ ) );if( strlen( $user_name ) < 4 )
$errors->add( ‘user_name’, __( ‘Username must be at least 4 characters’, ‘buddypress’ ) );if ( strpos( ‘ ‘ . $user_name, ‘_’ ) != false )
$errors->add( ‘user_name’, __( ‘Sorry, usernames may not contain the character “_”!’, ‘buddypress’ ) );/* Is the user_name all numeric? */
$match = array();
preg_match( ‘/[0-9]*/’, $user_name, $match );if ( $match[0] == $user_name )
$errors->add( ‘user_name’, __( ‘Sorry, usernames must have letters too!’, ‘buddypress’ ) );
`October 24, 2010 at 10:44 am #96290In reply to: Question about registration and the admin bar
Hugo Ashmore
ParticipantAs that guide is written b y Boone I guess it must be possible, if it hasn’t worked for you you need to review carefully what you have done and that you have followed all steps explicitly, and yes it might be a case that you need the css in which case test that theory by dropping the adminbar css file into your header for the top level site.
There is a means of deactivating the activation and there will be threads on the forum and – I think – a plugin so have a hunt around.
Don’t do this just to circumvent an issue you are having though; to want to remove activation because as you say “the verification email is being marked as spam most of the time” should be telling you that there is something wrong, email servers only apply filters based on sets of rules, you do have to ensure that when email servers look at incoming mail that they can verify it’s origin in other words perhaps you need associated dns mx records for your domain?
Email isn’t necessarily something that just works or something that WP magically deals with, all WP does is simply use a faux email relay such as sendmail it doesn’t know or care whether your emails report themselves correctly.
October 23, 2010 at 7:53 pm #96236In reply to: Users are not receiving mail on registration
r-a-y
KeymasterOctober 23, 2010 at 1:53 pm #96207In reply to: Setting redirect page for non-logged in users
Miko
ParticipantI don’t want a landing page for visitors, I want normal visitors to see all of the usual pages & posts on the public part of the site. This is happening fine. What I want is for them to arrive on a nice page if they search for something that is on a hidden private part of the site. I am using Private Buddypress to hide members area (private profiles, forums etc) from the main marketing pages of the site ( WP pages and posts). The Private Buddypress plugin annoyingly redirects to the standard WP login screen (as you can see in the code from that plugin posted in my original Q). I do not like this, because it gives no explanantion to the user why they searched for something and arrived at a login screen. This is why I want to redirect to my custom 404 page, which I have modified to say that the item they are looking for is not found, or it is only visible to logged in members. What I want to know is how EXACTLY to modify the above code to get the redirect to point to the 404 page.
The login screen is not helpful, and in fact it’s offputting/confusing because you have to be a member of our photo club to be allowed into the community – so we don’t accept public registrations. Showing a login screen makes it seem like people should be able to register somehow, when they can’t.
October 23, 2010 at 1:12 pm #96204In reply to: Users are not receiving mail on registration
Anonymous User 96400
InactiveIn my experience the mail actually gets sent 99.9% of the time. Sometimes it just ends up in the spam folder. Especially with Gmail accounts.
October 23, 2010 at 1:04 pm #96203In reply to: Users are not receiving mail on registration
Roger Coathup
Participantsearch these forums, this is discussed lots of times.
Can your site send standard WordPress admin emails, e.g. if you create a new user in the admin panel, does it send an email to you as site admin?
If not, you need to configure your WordPress mail correctly, before proceeding with BuddyPress
October 23, 2010 at 7:27 am #96167anindyaray
MemberI don’t know much but I think one nice option would be to comment out or remove the Blog creation details section from the register.php file of your theme.
register.php file residence : yourtheme/registration/register.php
blog creation details section on register.php would be approx : from line no. 169 to line no. 201
or simply comment out line no. 173
or the line with<?php _e( 'Blog Details', 'buddypress' ) ……
and line no. 175
or the line with<input type="checkbox" name="signup_with_blog" i …………………….
This may solve your issue with keeping the blog registration open but stopping new people from registering it from the register page of your site.
October 21, 2010 at 6:38 pm #95927In reply to: Friend request – wp-login redirects?
Active Citizenship
ParticipantI have no ideas but I am getting the same type of problem with WP 3.0.1 BP1.2.5.2. When a new user is registered by the admin, via the “add user” option on the users page, an auto email is sent. When the new user clicks on the link they get redirected to wp-login.php. What make this a major problem is that they have not yet been assigned a password so there is no way for them to confirm their existing registration and no way for them to register themselves with the same email address until the first email registration expires (2 days i think).
This wasn’t happening to me at first with the same set up. The new user would enter the site. But I’m unsure if they couldn’t leave without being assigned an avatar and selecting a password?
What’s up with this redirect? Any solutions?
October 21, 2010 at 6:37 pm #95926In reply to: BP Xtra Signup
davewoodbridge
ParticipantHi guys,
Great plugin – some very critical registration form elements!
I’m having some trouble with the mailchimp integration. When I enable it via the bp-xtra admin page, I get a 404 error after users submit the registration form, and no address is added to my Mailchimp list. The user still gets the activation email, but the 404 is kind of ugly
I’ve set up the plugin properly: added my API key and the ID for the group… but 404 page remains unless I disable the mailchimp checkbox.
Anyone have this problem? Or any idea how to fix it?
Thanks in advance,
Dave.October 20, 2010 at 10:43 pm #95776In reply to: BP advertises “WordPress Blogging” .. but how?
Webbasica
ParticipantSo what I have to do is enable “Logged in users may register new sites.” under “Registration Settings”?
Right now I have the first option checked:
1- Registration is disabled. (checked)
2- User accounts may be registered.
3- Logged in users may register new sites.
4- Both sites and user accounts can be registered.Since I’m using BP, and I want my users to be able to create their own blogs, which one should be checked?
October 20, 2010 at 5:26 pm #95733In reply to: No register button ?
gillm
MemberI have this problem too. However, I can’t see where to set-up user registration in the BP admin section – these are the options I have under General Settings –
Disable BuddyPress to WordPress profile syncing?: Yes No
Hide admin bar for logged out users?: Yes No
Disable avatar uploads? (Gravatars will still work): Yes No
Disable user account deletion?: Yes No
Disable global forum directory?: Yes No
Disable activity stream commenting on blog and forum posts?:October 20, 2010 at 5:04 pm #95730In reply to: No register button ?
danbpfr
Participantyou have to allow user registration in your BP admin for see the register button.
October 20, 2010 at 3:00 am #95664In reply to: BuddyPress Login Dialog/Interface
@mercime
Participant@jhansensd http://testbp.org/ has the default theme and your users don’t have to go to the backend to log in. As for registration, it’s the “Create an account” in same login panel on the sidebar. You can can easily create a Register Now button in your BP child theme if you prefer. Users do not install bbPress, the Site Admin does.
Recommend that you read the “Getting Started” section in Codex – https://codex.buddypress.org/home/
October 19, 2010 at 9:54 pm #95639In reply to: Creating different types of users
Boone Gorges
KeymasterAt the moment, I don’t know a plugin that can do it. A plugin *could* do it, though, by following something like the following setup:
– Modify the registration templates to include Player/Team/Sponsor dropdown
– Hook a function to `bp_core_signup_user` that gets that information out of the $_POST global and saves it with update_user_meta()
– Hook into some of the profile display load_template functions (such as `xprofile_template_display_profile`) to swap out the templates based on the usermeta, which you’d load with get_user_meta()Such a plugin would take some time to build well, but would be really useful to a lot of people. Good luck!
October 19, 2010 at 7:24 am #95550In reply to: Multiple user types – possible?
Matt Edminster
ParticipantYou once mentioned having a proprietary solution for user lists using xprofile fields.
In redesigning my organization’s website I need to 1. display certain users (organization members in various departments) in a directory and 2. limit certain kinds of content creation to these lists (group creation only for organization members). We still want the site open to the public and use it to recruit new staff so I can’t just close down registration. Also, I can’t use wp roles because write permissions don’t line up with our organizational groupings (eg, some organization directors will be contributors while others are editors).
I’d be interested to know what you’ve come up with and would be willing to purchase it if it meets our needs and fits our budget.
October 18, 2010 at 6:54 pm #95508In reply to: member dont get email
@mercime
ParticipantWhat BP/WP versions are you on? WP Single or multisite? BP installed in root or secondary blog? Hosting company? Hosted on Windows or Linux? Any BP/WP registration plugins turned on?
October 16, 2010 at 3:21 pm #95332In reply to: Multiple registration pages
Hugo Ashmore
ParticipantYou just need to replicate the whole section after the `if(function_exists(‘bp_has_profile’)) :` but pass the parameter for the group required i.e ‘profile_group_id=2’
I’ll warn you in advance the trick is going to be working through the mire of if/elses there’s a mess of them, tha whole page should have could have been written better!
There’s a plugin to deal with the links in profiles, look through the plugin list .
October 16, 2010 at 10:00 am #95324In reply to: Registration fail – page just reloads
Narada Das
ParticipantNo I was not logged in and
yes I am now trying thr default theme and it seems okay so far.
I notice with the default theme that if I enter an already used email address or username I get an error message.
I dont think that was happening in my other theme so I guess thats a clue.
Not being a programmer I think I will go with modifying the default theme rather than trying to make something else work.October 16, 2010 at 8:17 am #95320In reply to: Registration fail – page just reloads
Hugo Ashmore
ParticipantAnd did you try it with the BP default theme?
You’re not logged in to the site and trying to activate a registration using the same browser are you?October 16, 2010 at 7:37 am #95316In reply to: Registration fail – page just reloads
Narada Das
ParticipantHas anyone had a problem with the registration page reloading and the registration not going through? What makes this wierder is that after the problem appeared I managed to do one proper registration and then it has been failing again ever since.
October 16, 2010 at 4:21 am #95311In reply to: How to invite? probably stupid
nequinox
MemberI was just saying if it was possible there would be no point..
With invite anyone how do i stop regular users from inviting only administrators. and not having open registration
October 15, 2010 at 3:29 pm #95257In reply to: Hello Eco Living
techguy
ParticipantNice looking site. Has a fresh feel to it. I like it.
A few simple comments. On the main page the “Lost your pasword” and “register” links are so close together they look like one. Seems like you’d want to drive registration, but as is I don’t think they’ll see that link at all.
The social network page is nice, but it doesn’t have a very good call to action as far as joining the social network or giving me the option to start doing the things that it lists. There’s one link at the top to join which I pretty much missed at first glance and only realized later that it was there. Although, if I didn’t know web design and BP I might not have ever found it. Then, there’s the link on that page to start a blog. I’d suggest adding some nice big buttons on that page which invite people to join and know clearly where to click to join.
I hope this is helpful.
-
AuthorSearch Results