Session Variables Not Persisting in Different Folders
I have created a login in the root of my site... once a correct login has been confirmed, a session variable is set that forwards the user along to their next location, based on that persons credentials.
The problem I am having is that once the application forwards the user, they land in a different directory and they for some reason have lost the session variable I assigned.
I setup a test page to simply print out my session variables in each directory I go to and I can click forwards and backwards and see the session variable appearing and disappearing.
To make sure that I had no code removing the variable, I created pages that do absolutely nothing but display the vars. Displayed below:
<cfoutput>
#session.county_district#
</cfoutput>
You can view the two pages here:
http://new.fergflor.k12.mo.us/
and here
http://new.fergflor.k12.mo.us/map/
What could be happening that a session loses definitions between folders?
Thanks
