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? 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'] : ''); ?> 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! Link to comment https://forums.phpfreaks.com/topic/52885-sessions-not-staying/#findComment-261588 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.