Copy link to clipboard
Copied
We recently upgraded to CF8 from Cold Fusion Mx6.1.
Once we log out from the application, we have an option to "Login again" . Once we click on the Login Again Link,it should ask you to enter the login credentials again. This is what hapeening with Cold Fusion Mx6.1.
But with CF8, it is directly taking to the application home page with out asking for login details.
We are deleting all the session variables before signing out .
After that we have even used <cfcookie> tag with expires='now' attribute also.
Can some body help me to understand how the Login credentials are coimng picked. is theer diff is there in CF6 adn CF8 in thsi regard?
Best regards
Sudha
Copy link to clipboard
Copied
We are deleting all the session variables before signing out .
I think it has to be the other way round: sign the user out, then delete his session. Even better, you could store the login credentials in session scope. Then there will be no need to manually delete the session. Could we see the code?