I've tried to redirect After successful login as following:
header("Location: email_adresy_list.php");
exit();
PHPR 4.2 has generated event code function in 'include/events.php' with the following declaration:
function AfterSuccessfulLogin($username, $password,&$data)
After giving proper login/pass values PHP generates error:
Fatal error: Cannot pass parameter 3 by reference in C:\Program Files\xampp\htdocs\infotexn\emile\login.php on line 71
The proper line in login.php is:
AfterSuccessfulLogin($pUsername,$pPassword,array());
I think it's the bug.
JaceK