Solutions to some issues I got.

Discussion of general topics related to the new version and its place in the world. Don't discuss new features, report bugs, ask for support, et cetera. Don't use this to spam for other boards or attack those boards!
Forum rules
Discussion of general topics related to the new release and its place in the world. Don't discuss new features, report bugs, ask for support, et cetera. Don't use this to spam for other boards or attack those boards!
Post Reply
Wilo

Solutions to some issues I got.

Post by Wilo »

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" target="_blank |
| 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.

Wilo

Delete this post please.

Post by Wilo »

Opps, checked out wrong verision.. : )

Post Reply