Using php-4.2.3
| *** NOTE *** |
| The default for register_globals is now OFF! |
| |
| If your application relies on register_globals being ON, you |
| should explicitly set it to on in your php.ini file. |
| Note that you are strongly encouraged to read |
| http://www.php.net/manual/en/security.r ... lobals.php |
| about the implications of having register_globals set to on, and |
| avoid using it if possible. |
Needed to set this to ON.
-----
// setcookie($cookiename,$sessid,'',$cookiepath,$cookiedomain,$cookiesecure);
setcookie($cookiename,$sessid,$cookietime,$cookiepath,$cookiedomain,$cookiesecure);
Seems the code I checked out was passing a stirng like '', and php wanted a long..
Just sharing. No response needed.
Wilo.

