Constants -- predefined constants
AUTH_IDLED
-1
Returned if a session exceeds its idle time.
AUTH_EXPIRED
-2
Returned if a session has expired.
AUTH_WRONG_LOGIN
-3
Returned if the Auth Container in use is unable to validate the
username/password pair supplied.
AUTH_METHOD_NOT_SUPPORTED
-4
Returned if the requested function is not implemented by the Auth
Container in use.
AUTH_SECURITY_BREACH
-5
Returned if the advanced security checking detects a breach.
AUTH_CALLBACK_ABORT
-6
Returned if the checkAuth callback function aborted the session.
|
Auth_Frontend_HTML (Previous)
|
(Next) Auth::Auth()
|
|
|
Download Documentation
|
Last updated: Sun, 20 Jul 2008 |
|
Do you think that something on this page is wrong? Please file a bug report or add a note.
|
| User Notes: |
Note by: ssharma@odc.net
I didn't know at first where to use these contants to check for inactivity and failed logins. The problem is that you can't check before you $auth->start() because the auth hasn't been started yet. And you can't do it afterwards since the login page has already been displayed.
You need to do it inside the loginFunction() callback.
function loginFunction() {
global $a;
$status = $a->getStatus();
echo some error about the invalid login
echo your login form.
}
This seems so logical now, but I spent a good 10 minutes on this. Hopefully this will save
|
|