Tagged Questions
-1
votes
2answers
32 views
Show User Their Password
I've got a few automated scripts that run to notify users of certain updates to the application, etc... and for one in particular, I need to be able to display the users user_login and their password.
...
0
votes
2answers
29 views
Is it possible to block subscriber users to changing its password?
I want to disable changing password option for all my subscriber users.
Is it possible by doing any code tweak or something using any plugin?
If someone has any idea or plugin knowledge to do this ...
0
votes
0answers
25 views
Udate user's password without closing the session
I Achieved changing user password like:
if ( !empty($_POST['pass1'] ) && !empty( $_POST['pass2'] ) ) {
if ( $_POST['pass1'] == $_POST['pass2'] )
...
0
votes
0answers
45 views
Wordpress Forgot Password Using Invalid Keys?
I am an administrator for a Wordpress site and have been getting many, many requests on people trying to use the reset password feature to recover a lost password. The email always sends and contains ...
0
votes
0answers
28 views
What does global $wp_hasher check for?
What does global $wp_hasher check for By the following check?
global $wp_hasher;
if ( empty($wp_hasher)
Is it to look if the user_pass filed contains the hashed password or not?
How do I check ...
0
votes
0answers
210 views
How to use md5 hashed password (got from external API) to import/create user in wordpress?
I am trying to import user from WHMCS API. It sends password hashed in following format:
md5($salt.$pass)
I know the $salt. As I don't know the $pass (WHMCS sends only hash like the above format), ...
2
votes
3answers
151 views
Is it possible to get a user with just the password field?
I tried doing something like this:
$user = $wpdb->get_row('
SELECT *
FROM ' . $wpdb->users . '
WHERE user_pass = "' . wp_hash_password('password') . '"'
);
But the ...
-1
votes
1answer
64 views
Protect page with user-credentials? (Not just a password) [closed]
I need a specific user role to be able to login through a form on a page, and then display the page content. They shouldn't login with the wp-admin page. I just want a normal <form> on the ...
4
votes
4answers
323 views
Replacing the Wordpress password validation
I have a custom application with thousands of users who already have a password stored. I would like to set up a self hosted wordpress site to accompany that application and to use the usernames and ...
1
vote
1answer
1k views
How to let user set password on registration
I´m working on a front end registration form adn have gotten as far as getting the standard registration form to work, but... I´d like to add the oportunity to let the user choose his/her own ...
0
votes
2answers
917 views
Convert user passwords to MD5?
I am in the process of migrating my site out of Wordpress and I need to filter the registration and/or login process so there is a separate database field that holds the user password in a hash that ...
3
votes
1answer
50 views
Migrating users from .com to .org?
I am in the process of migrating my blog from my wordpress.com address to a self-hosting (wordpress v3.1.2) address.
Blog has migrated across nicely.
Appears my users have also migrated across, but ...
3
votes
2answers
563 views
how to use joomla password format in wordpress?
I need to import more than 1000 users from joomla to wordpress. I can do that with csv. My main concern are passwords. I did some googling and found out that it is possible to change wordpress ...
3
votes
2answers
386 views
Setting WP Admin passwords to expire
I'm aware it's not a feature of Wordpress, but I was wondering if there was a way or a plug-in (haven't found one from searching) that allows me to force a user to change their password after a ...