|
You dont use the integration config with mambo
We set two cookies the same as MAMBO
setcookie( "usercookie[username]", "{$User['username']}", time()+2592000,"{$Globals['cookie_path']}", $Globals['domain_path'] );
$dbpassword = md5($password);
setcookie( "usercookie[password]", $dbpassword, time()+2592000,"{$Globals['cookie_path']}", $Globals['domain_path'] );
I can only suggest you check your cookie settings as they are not the same. Cookie settings must be the same for an integrated login
|