Just want to verify something:
Am I able to use PEAR::Auth to log a user into a website after they enter a user name and password? A bit of googling has yielded 2 results:
- Here is the code...it should just work like magic! (It doesn't for me)
- PEAR::Auth is for authorization not authentication.
Is it that the user must already have a session from some other login process?
I've followed the layout of the 2nd example from the PEAR docs but calling
$auth->getAuth()
returns false every time.
A var_dump of $auth->listUsers() will return:
array(1) {
[0]=>
array(3) {
["user"]=>
string(10) "theUserName"
["password"]=>
string(10) "thePassword"
["username"]=>
string(10) "theUserName" //repeated?
}
}
Not sure why I get the user name showing up twice. At this point I can just check the post data against the results from listUsers, but I'm attempting to use the PEAR API correctly and not hack my way around it.
EDIT:
Forgot to mention that calling $auth->getStatus() returns -3 which is a AUTH_WRONG_LOGIN which is "Returned if the Auth Container in use is unable to validate the username/password pair supplied."
I've checked both the database connection and the user name and password sitting in the table and they are fine.