Skip to main content
Inspiring
May 23, 2016
Question

cflogout error

  • May 23, 2016
  • 1 reply
  • 850 views

Hello
I have a logout that doesn't seem to want to work for Coldfusion 10. I have a log in system for an admin area, I want to allow the user to log out of it and delete the session they are using. This is my code as well as the error it's giving me:

Code:

<cflogout>

<cfset StructDelete(session,"auth")>

<CFHEADER NAME="Refresh" VALUE="0; URL=index.cfm">

Error:

Cookie name "CFAUTHORIZATION_MYAPP" is a reserved token

I changed the name of the app to my app. What am I doing wrong here? I've tried a number of different ways to accomplish this log out.. They either don't delete the session with no errors, or I get this error.

Thank you

This topic has been closed for replies.

1 reply

BKBK
Community Expert
Community Expert
June 19, 2016

To get ColdFusion to log the user out and delete the session, simply do the following. In Application.cfc or in the cfapplication tag in Application.cfm, set loginStorage="session". Remove the StructDelete line, as it is now unnecessary.