Members Authentication
-
a form accepts fusername and fpassword and compares them with wp_users in order to admit certain roles to restricted pages.
$sql = "SELECT ID, user_login FROM wp_users WHERE user_login = '$_POST[fusername]' AND user_pass = md5('$_POST[fpassword]');";
however the values in user_pass do not match md5(userpassword). Manually applying md5 to the passwords worked for one day and then not the next. ????
The page I need help with: [log in to see the link]
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Members Authentication’ is closed to new replies.