Search Results for 'register'
-
Search Results
-
Topic: Plugin: Gravatar
I wrote a simple plugin for Gravatar. I am planning to put files on Extend, but I am still waiting. You can download it from Google Code for now, please visit this plugin’s homepage. You can find a download link and know how to modify your theme in the page.
It is relatively simple:
- Gravatar Email field – This plugin doesn’t use user’s registered email.
- Email Verification – Users need to own the Gravatar Emails which they input.
- Support Default Image
- Size customized (1..80px)
I hope I can hear your thoughts about this plugin.
Just noticed, while installing and integrating WP and BBP.
In WP users can register with a username including a space, such as
“Mr Pace”
In BBP this user would not be able to log in, since usernames with spaces does not work. “Mr Pace” is correctly noticed in the admin control panel but when trying to long theres an error message saying that “MrPace” (without the space between Mr and Pace) is not a registr user.
Topic: Simple registration
Hello
Somebody knows if there is a plugin or is going to be added in the next version a system to simplificate the registration process?
It would be great one of this things:
1- anonymous post, just put my name
2- i have to register, but I can choose my password and I don’t need to wait for a registration mail.
The main problem I have is that my users are lazy, so if I make them register and wait for a password they are going away…
Thanks for your comments.
I don’t know if this is a bug or if it is working as intended, but I figured I’d document it.
Explanation of bbpress registration/login
When a user registers in bbpress the user_login field in the database is case sensitive. If you register with the name Tom, Tom is put in the database. When a user logs in however, it is not case sensitive. So Tom can log in as tom, TOM, tOM, ToM… you get the point. Now this doesn’t seem like it would pose any problems. But…
Explanation of WPMU registration/login
WordPress MU and I’d guess WordPress do things differently. You may run into problems with an integrated site because of this ‘bug’. When a user registers through WPMU the user_login field in the database is converted to all lowercase. If you register with the name Joe, joe is put in the database. This is different from how bbpress does things. So if Bob registers through bbpress with a capital in his login the user_login is set to Bob, but in WPMU if Bob registers with a capital in his login the user_login is set to bob. Just like bbpress, WPMU’s login is not case sensitive. So Joe can login as joe, JOE, jOE, JoE.
The problem occurs if a user registers with a capital letter in bbpress and then tries to login through WPMU. WPMU converts the input in the login field to lower case BEFORE it queries the database. So WPMU checks for user_login with all lowercase letters, but there may be capitals, so the login can fail.
Here’s a step by step explanation
1) Fred registers in bbpress with the name Fred
2) user_login is set as Fred
3) Fred attempts to login to through WPMU using Fred (capitals)
4) WPMU converts Fred to fred BEFORE the database is queried.
5) According to WPMU fred (lowercase) does not exist.
6) Login fails
To fix this I set bbpress to match WPMU’s functionality. To do so I edited the bb_new_user function in the pluggable.php file. I simply added the following line before the database query.
$user_login = strtolower($user_login);
Now when a user registers through bbpress his user_login is set to all lowercase letters.
What I’d like to do is make a plugin that replaces the bb_new_user function with a new one that makes this change so I don’t have to edit a core file, but I’m not that savvy yet.
While this really isn’t a bbpress bug it would be nice if bbpress and WPMU did things the the same so that integration was easier.
Topic: Cookies
Hello,
I have modified our website’s registeration process so it copies over the user information to “bb_users” and the correct permissions for “bb_usermeta” — all working as expected, allowing us one registeration process for the site, AND forum. Excellent.
What I want to do now, is set the cookie information during our website login, so it automatically logs them in to the forum (as both username and password are always the same, as we handle this during registeration).
Problem is, I can’t figure out what bbpress is using to make the md5hash of the cookie name, example: bb_user_f1f348ebf7e6886fc1e743a675246401
If I modify bbpress to force the name (NOT THE VALUE) of the cookie to be, example: “usercookie” and “passwordcookie” — then my login process works and the user can move around the site and message board seemlessly, but this isn’t working as intended.
So simply, can someone tell me how the cookie name is created so I can do the same in my own login process! Thank you.
Topic: BB User problems
I have a few concerns, which I’d like an opinion on:
- Some new members get the title ‘keymaster’, which I change/delete/inactivate to something less worrying.
- The total member list is quoted as 314, whereas I have approx 80 registered members
- Since the last upgrade the Censor plugin has ceased to function.
Any suggestions as to what problems I might be experiencing…?
Perhaps it’s that I’m using ThemePress, but styling the login doesn’t work. I suppose I’ll have to actually edit the file, but it’s a file that shouldn’t cause upload trouble. I don’t want to have to do that much though.
Also, how do I change the register/login link at the bottom of a post if one’s not logged in to a little form itself? I can’t find this in my theme, and I’d like to change that.
It’s important to keep things on the WP side since I’m using MU.
I didn’t find another post on this by the way. And thanks for any help!