Search Results for 'registration'
-
AuthorSearch Results
-
April 24, 2014 at 3:09 pm #181985
klogan2
ParticipantThe page does refresh (when a required field is left empty), drops one or 2 of the values (like month & year in a birthdate field),,, but doesn’t show the error messages for any blank fields in the Profile portion of the form.
Thanks for your suggestion,,, I’d say that’s probably way over my head,,,I might be able to do it ‘eventually’,, but I hope an easier solution comes up đŸ™‚
April 24, 2014 at 2:47 pm #181983terraling
ParticipantThanks @godavid33.
I’d like to fix this without having to resort to a custom sql query.
BuddyPress is designed to do this (sort alphabetically by display name rather than username) correctly.
In the relevant code, it checks to see if WordPress-BuddyPress profile syncing is enabled. If it is, it runs the query against the wp_users table rather than the wp_bp_xprofile_data table, because “the table is smaller and better indexed”. If syncing is disabled then it runs the query against the xprofile display_name field instead.
I have fixed the problem by turning off syncing so that it uses the xprofile display name, so my question is, what does profile syncing do exactly and when/how does it do it?
I presume it overwrites nicename in wp_users with the display_name from xprofile (anything else?), but in my case it is not doing so, it appears broken.
If I could identify the when/how then I’d be able to see if it is something I’ve broken or omitted in, for example, my custom registration page.
April 24, 2014 at 2:05 am #181961BackpackersUnion
ParticipantVICTORY!!!
Hiding in plain sight was,
div class="register-section" id="blog-details-section"
Which is the CSS #ID in the BuddyPress register.php file (Both files). So, to hide the “Blog Details” during registration I added,
#blog-details-section { display: none; }
to my Child Themes style.css, which solved this lingering problem beautifully.
April 23, 2014 at 6:16 am #181927In reply to: Activating buddypress on the latest WordPress
Mathieu Viet
Moderator1. Do you use BuddyPress on a non multisite config ?
2. Do you have a lot of members ?
3. Do you allow registration ?
4. If so and if you have an access to a MySql admin tool such as PhpMyAdmin, can you run this query :SELECT count(u.ID) FROM wp_users as u LEFT JOIN wp_usermeta as um ON u.ID = um.user_id where u.user_status = 0 and um.meta_key = 'activation_key';
‘wp_’ might be to replace with the table prefix you may have customized in wp-config.php
Once done can you share the result of the query in this forum ?
April 22, 2014 at 6:04 am #181883meg@info
ParticipantCheck if registration is enabled in your WordPress settings.
April 21, 2014 at 7:47 am #181835In reply to: Unable to Register Users
@mercime
Participant@sarahs91 there have been changes to both BuddyPress and WordPress. Have you done some basic troubleshooting like changing theme to Twenty Fourteen/Thirteen? If it’s still an issue, have you deactivated plugins other than BuddyPress to check which is causing conflict in your registration?
April 20, 2014 at 6:57 am #181791In reply to: [Resolved] Simple styling
@mercime
Participant@eddieb12180 Did you even try adding the styles I provided above? Of course you can make some changes in the registration page’s markup. Copy over the register.php file from https://buddypress.trac.wordpress.org/browser/tags/2.0/bp-templates/bp-legacy/buddypress/members/register.php into yourchildthemefolder/buddypress/members/ folder and make the changes you want to html tags available there.
April 19, 2014 at 11:02 am #181744In reply to: Lost admin access after 2.o update
Mathieu Viet
Moderatorhi @livsy
How were you doing before ? Once a user registered, you were changing the role before he activated his account ?
Or are you choosing a role different than Subscriber in the WordPress setting (wp-admin/options-general) > New User Default Role dropdown field ?
About the upgrade difficulties, were you using a plugin that was dealing with registrations, and if yes which one ?
Thanks for your feedback.
April 19, 2014 at 7:51 am #181731In reply to: Lost admin access after 2.o update
Livsy
ParticipantHi! I have the same problem with admin rights. @boonebgorges ‘s fix helped me a lot. But I have another problem. This fix can’t help users which get a subscriber’s role after registration. I set an author role for all new members of my site in wordpress settings. But it had no effect.
April 18, 2014 at 12:45 pm #181663In reply to: BP 2.0 update failure – WP admin won't load
Boone Gorges
Keymaster@blankpoint Sorry for the troubles. The upgrade routine necessary for BP 2.0 is fairly large.
I’ll work in the upcoming weeks on improving it, but in the meantime, a few things to try:
1. Your memory limit issue is due to the fact that WP will not allow you to exceed 256M per pageload without explicitly saying you want to (regardless of your php.ini settings). You can put the following into wp-config.php to override for the admin only:
define( 'WP_MAX_MEMORY_LIMIT', '1024M' );
2. Just to get up and running, you might also consider running the heavy migration manually: from the mysql command line.
INSERT INTO wp_bp_activity (<code>user_id</code>, <code>component</code>, <code>type</code>, <code>action</code>, <code>content</code>, <code>primary_link</code>, <code>item_id</code>, <code></code> date_reco SELECT user_id, 'members' as component, 'last_activity' as type, '' as action, '' as content, '' as FROM wp_usermeta WHERE meta_key = 'last_activity' AND user_id NOT IN ( SELECT user_id FROM wp_bp_activity WHERE component = 'members' AND type = 'last_activity' ) );
You could split this up with a LIMIT clause in case you need to run it a few times.
The other problematic bit of the upgrade routine has to do with migrating your old signups to the new signups schema. (I’m assuming you have open registration + non-multisite.) That migration is not necessarily mission-critical, so you could skip it altogether. So, in other words, once you’ve run the ‘last_activity’ migration, you could comment out line 351 and lines 355-395 here: https://buddypress.trac.wordpress.org/browser/tags/2.0/bp-core/bp-core-update.php#L351 and then reload your admin to mark the migration as complete.
Again, sorry about the difficulties. You’re running a very large BP site, and the migration tools were not up to the job.
Then, you could comment out this line: https://buddypress.trac.wordpress.org/browser/tags/2.0/bp-core/bp-core-update.php#L351
April 17, 2014 at 5:04 pm #181597In reply to: Lost admin access after 2.o update
Mathieu Viet
Moderator@notpoppy Great! Sorry again for the inconvenience. I’m not sure User Role Editor deals with registration as it seems to be a role management plugin. But i’ll check it.
April 17, 2014 at 4:36 pm #181591In reply to: Lost admin access after 2.o update
Mathieu Viet
ModeratorDo you have any plugins that deal with registration on your config ?
April 17, 2014 at 2:49 pm #181577In reply to: Theme My Login plugin & Buddypress
jessicana
ParticipantWell, I did that and I have buddypress default registration page. The default registration page has the name as a required field and it can be seen by everyone, I am having problem with buddypress default registration page for many reasons:
1) If you visit the default buddypress registration page, and leave all the fields blanks and hit complete sign up, you will only receive three red notifications for required accounts details as follows:
a. Please enter a username
b. Please check your email address.
c. Please make sure you enter your password twice
Although the name is a required field, but you don’t receive similar message for a required field, and if the user don’t fill the name, the page refreshes without asking the user to fill the name.2) Having the name as a required feild, will discourage users registration and I am not sure how to make it optional at the registration stage.
Thank you
April 17, 2014 at 11:42 am #181570In reply to: Lost admin access after 2.o update
Mathieu Viet
ModeratorHi @textrat
I’m really sorry to read about this issue. I’ve run some tests to try to reproduce. This is the results of it:
1/ “Confirm User Registration” doesn’t seem to interfere. The plugin is adding a user_meta “authentication” set to 1 for each users. When a user logs in it checks if this user meta is there and if so allow the log in, else display a message saying the account is not authenticated.
2/ The only way i’ve managed to have a user_status set to 0 and the activation_key still in usermeta for this user was to set the user_status to 0 myself directly in the database (testing config WP 3.8.3, BP 1.9.2 > 2.0 and Confirm User Registration)
3/ From the Manage Signups screen if i activate this kind of user (user_status 0 and activation_key not empty), i have the message that user is already activated, but the user is no more in the list of pending accounts and is now available in the users list with the default role
4/ About the 152 pre-existing, the only way i’ve managed to reproduce a similar problem was to restart all again and to delete the value of activation_key meta in the database. eg : activation_key > “” : The meta is there but empty. In this case, the user keeps on being in pending after trying to activate it.I think clearing the “pending bit” can be achieve by updating the “active” field to 1 into the signups table for the 152 pre-existing users. But, before doing so, you should check the ‘activation_key’ meta values for some of the 152 users to see if the value is empty. This way it could confirm my point 4.
Then you should check for the corresponding user_status to be sure it is not set to 2.Whatever you do, i advise you to backup your database before.
April 17, 2014 at 1:31 am #181527In reply to: Lost admin access after 2.o update
Texrat
ParticipantSorry to post again. The problem seems to be a conflict between the new “Manage Signups” function and another plugin. I thought maybe bbPress, but it could also be “Confirm User Registration” by Ralph Hortt: http://www.horttcore.de/
Right now I cannot get any of 167 users out of Manage Signups. If I Activate someone, they remain there afterward.
I deactivated “Confirm User Registration” and now plugins are all out of whack. I can’t even view the Plugins page. I need to disable all of them and start over…
April 16, 2014 at 11:05 pm #181503In reply to: Lost admin access after 2.o update
Boone Gorges
Keymaster@lchief – You might be onto something. This is supposed to be part of the migration tool to the new setup system. Can you share the following info:
– Are you running WP Multisite?
– What is your current registration setting?
– Are you using any plugins (other than BP) that modify user registration in any way?April 16, 2014 at 9:15 pm #181488In reply to: Hide profile fields from registration page
modemlooper
ModeratorCreate profile field groups. Only the first group shows on the registration page.
April 14, 2014 at 11:18 am #181231sharmavishal
ParticipantDid you install any social plugin? I guess not..else you would have known that the login with buttons are created automatically by the plugin…try the following social login plugin
https://wordpress.org/plugins/wordpress-social-login/
Regarding your main idea..you would need to do some custom stuff for that…as far as approval of users go use the following plugin…
https://wordpress.org/plugins/bp-registration-options/screenshots/
googling really helps though
April 14, 2014 at 7:42 am #181226ivarzLV
ParticipantTrue, but how to create “Login with…” button who have feature that allows ONLY already registered site members log in with social profiles?
Main idea – there is button for registration (will sent e-mails with invite links also), after registration site moderator will check and accept/decline. After that registered and approved user will have possibility to log in into website with his/her Facebook and Twitter profile but if user is not approved by moderator, user cannot log in with social profile.
How to do this?
April 12, 2014 at 9:09 am #181164Henry Wright
ModeratorThere are lots of social login and registration plugins in the WP plugin repo:
April 8, 2014 at 3:54 pm #180967In reply to: Spam Overload
Squirrel
ParticipantHave you tried the WangGuard plugin? It’s supposed to be good stopping spam registrations.
April 5, 2014 at 6:59 pm #180848In reply to: Will BuddyPress 2.0 fix this problem?
simple-man
ParticipantI do have the google captcha implemented on the registration form so that will help at least to make sure it is humans registering.
Thank you.
April 5, 2014 at 6:45 pm #180846In reply to: Will BuddyPress 2.0 fix this problem?
Renato Alves
ModeratorI agree. I just think you will see an increase in spam registrations.
April 4, 2014 at 2:12 pm #180791aussiemike
ParticipantThank Robert. I will take a look into this. I am sort of getting the hang of things with BP. I have Wishlist Member running on the site so registration is through a custom registration form, no BP registration. This has caused me some headaches because WLM does not integrate fully with BP.
Thanks again for your reply and your time.Much appreciated.
Mike
April 4, 2014 at 1:33 pm #180785robertFudge
ParticipantHi Mike,
I don’t think that you can entirely remove the xProfile name field from BuddyPress (Even with the plugin that is available). So I decided why fight it? I cloned the WP username. The only potential problem with this is that the WP username is public – I used a plugin to force stronger WP username and passwords to help with this.
Here is the base of what I did:
– On the registration form hide the xProfile name field (CSS display: none) and make a javascript listener (CHANGE) function to change the xProfile name field to the value of the WP username. This will take care of the form validation – xProfile name field is required. See reference…
– For the edit your profile section I hide the xProfile name field, I also included a PHP function that made the value of this equal to the WP username, in the state that a user was added from the dashboard. (I did not provide PHP, I essentially grabbed WP logged in username…) – You can also display the xProfile name field input as readonly (add attribute: readonly).
Now all xProfile name field instances in BP are the same as the WP user.
Reference:
jQuery(‘input#signup_username’).change(function () {
jQuery(‘input#field_1’).val(jQuery(this).val());
}); -
AuthorSearch Results