hmmm...i have a set of scripts working on one server...then i install them on another...but the SESSIONS aren't working now...
what might i do to try to resolve this issue?
thanks...jv
check to se if sessions are turned on in the php.ini if you can or ask you hoster if they are on?
If you are calling the session var like a global, IE, $sessionvar, REGISTER_GLOBALS must be enabled on the server...
If you are using the array form IE, $_SESSION['sessionvar'] then the above post is what you need
You can dump everything that's contained in your session like this:
session_start(); echo "Session: <pre>"; print_r($_SESSION); echo "</pre>"; echo "id " . session_id();