|
|
Sergey Kornilov admin 3/23/2012 |
|
The best and only approach is to fully override PHPRunner login procedure in BeforeLogin event. $_SESSION["UserID"] = $username; |
|
|
|
500509 3/23/2012 |
|
I have this code to have a link go through the login straight to the view page It works fine for the users table
|
|
|
|
Sergey Kornilov admin 3/23/2012 |
|
@wbdesigner, |
|
|
L
|
lordkain2 author 3/25/2012 |
|
Sorry, I didn't explain well my point, the password field is 'CHAR' type (has fixed size and complete the remain size with ' '. |
|
|
C
|
cgphp 3/25/2012 |
|
In the "Before login" event, enter this code: $password = substr($password,1,6); |
|