siwelis Posted May 24, 2007 Share Posted May 24, 2007 I'm having a problem, where my sessions recognize me being logged in just fine, unless I'm at http://www.url.com/ instead of http://url.com/ ... I want sessions to recognize me as being logged in everywhere on the site, including sub domains... Is this possible? Quote Link to comment https://forums.phpfreaks.com/topic/52885-sessions-not-staying/ Share on other sites More sharing options...
MadTechie Posted May 24, 2007 Share Posted May 24, 2007 this may help 'session.cookie_domain' should be set to empty string for all local domain names, not only for 'localhost' (but should not be empty for local IP addresses): <?php ini_set('session.cookie_domain', (strpos($_SERVER['HTTP_HOST'],'.') !== false) ? $_SERVER['HTTP_HOST'] : ''); ?> Quote Link to comment https://forums.phpfreaks.com/topic/52885-sessions-not-staying/#findComment-261145 Share on other sites More sharing options...
siwelis Posted May 25, 2007 Author Share Posted May 25, 2007 session_start(); session_name('SessionMain'); That's what I've got so far. I've tried putting that snippet of code above, below, and completely replacing "session_start()" Can someone tell me what I'm doing wrong please if you know? Thank you! Quote Link to comment https://forums.phpfreaks.com/topic/52885-sessions-not-staying/#findComment-261588 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.