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