I'm a newb, and I have a question. Big surprise, no? :)
I recently developed an application that uses session variables. The problem has now come where I want to create a way to "log the user out" of or terminate the session.
I've used the following code in my Application.cfm to be initiated if the variable "loggedout" is created in the session variable "auth":
<cfif isdefined("session.auth.loggedout")>
<cfapplication
name="TimeClockAdmin"
sessionmanagement="yes"
sessiontimeout="#CreateTimeSpan(0,0,0,0)#">
<meta http-equiv="REFRESH" content="1; url="">
<cfabort>
</cfif>
And it does indeed log me out of the session... However, whenever I sign back in, I get a url similar to this:
thefoldoer/?CFID=500&CFTOKEN=80454498
Now, perhaps it is related to my understanding of how session variables work or how the CGI.SCRIPT_NAME works, but for the life of me I can't udnerstand why these values are being passed..
If it's possible, coudl someone explain to me why these are created, and how I can eliminate them?
Thanks!
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]
