I'm trying to access the $_SESSION array from a report script I'm working on. Because it's in a separate directory (for source control management), I'm not able to see the $_SESSION information about login.
I've changed sessioncontrol.php to use a global path:
// session_set_cookie_params(0,$relativeurl.'/');
session_set_cookie_params(0,'/'); // tac: needs session info across domain
Logged out and logged back in, but I don't see the $_SESSION from my script, so it's failing when I try to get the list of surveys.
What script / function needs to be called to set the session?
Thx,
Tac