trafix Posted August 28, 2006 Share Posted August 28, 2006 Hi there,Need help! .... I have 2 domains xxxx.comxxxx.com.au is parked in the above server.when a user logs into one of them i need to be able to set the cookie(s) so the user is logged into both.Currently if they log into one and go the the other extension, they are not logged in and it is driving my members batty ..... Can you assist me?Trafix Link to comment https://forums.phpfreaks.com/topic/18864-setting-cookies-for-2-different-domain-extensions/ Share on other sites More sharing options...
radar Posted August 28, 2006 Share Posted August 28, 2006 If i have 2 sites on different servers or with different extensions -- I generally don't set the domain... This way there is no chance of coding error...Another option you could have is to just add another cookie for the other domain by setting it at login, deleting it at logout, etc.. and basically just doing the same thing twice for every instance of calling the cookie... Either way -- its your choice.. Link to comment https://forums.phpfreaks.com/topic/18864-setting-cookies-for-2-different-domain-extensions/#findComment-81459 Share on other sites More sharing options...
trafix Posted August 28, 2006 Author Share Posted August 28, 2006 i changed th code to ............[code] $lognameaa=strtolower($logname); $userinfoaa[username]=strtolower($userinfo[username]); if ($lognameaa==$userinfoaa[username]) { if ($logpass==$userinfo[password]) { $exptime=time()+60*60*24*3; setcookie("usercookie",$logname,$exptime); setcookie("passcookie",$logpass,$exptime); header ("Location: index.php"); } else { } } else { }[/code]no change ... logs in on one domain but not the other Link to comment https://forums.phpfreaks.com/topic/18864-setting-cookies-for-2-different-domain-extensions/#findComment-81466 Share on other sites More sharing options...
trafix Posted August 28, 2006 Author Share Posted August 28, 2006 another solution I was reading about canonical URL's. would it be better for me to create a .htaccess file to insure everyone uses the .com.au regardless of which one they type in Link to comment https://forums.phpfreaks.com/topic/18864-setting-cookies-for-2-different-domain-extensions/#findComment-81467 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.