Raymond Camden Wrote:

> So are you sayign it is working fine now? If so then I'd say the issue
was
> that you were not tieing session to cflogin.

No. Problem persists. But I found that the reason is because the cflogin
tag is never processed to begin with. The app must somehow think I am
still logged in, even though I'm using the following code:

<cfif isDefined("url.logout")>
<cflogout>
<cflock SCOPE="SESSION" TIMEOUT="100" THROWONTIMEOUT="YES"
TYPE="EXCLUSIVE">
<cfset structClear(session)>
</cflock>
<CFINCLUDE TEMPLATE="login.cfm">
<p>You have been successfully logged out!</p>
<cfabort />
</cfif>

Since cfLogin is not processed, the session vars are not set within it.

I thought that perhaps cfLogout did not always work, so I changed the
third to last line to look like this:

<p>You have been successfully logged out,
<cfoutput>#GetAuthUser()#</cfoutput></p>

But no user appeared. Huh! Any other ideas? Thanks again.

Andrew
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to