If the Joomla RG_Emulation in globals.php is set to 0 (which is best for security reasons), the parameters in the login process are not correct parsed.
The function
Code:
function integrateLogin($user, $pass, $cookietime)
tries to get the following variables:Code:
global $username, $password, $cookieneverexp, $cookielength;
which fails with RG_Emulation 0.With the use of
Code:
$cookielength = $_REQUEST[cookielength];
...
..
.
its working again....
..
.
Perhaps this helps the developers to make a future version register_globals off compatible, as this is more and more important

//edit:
I think this problem is caused by register_globals off, too.
Forum 




Yipiieh security!






