CF8 here, using Application.cfc
CF admin shows the maximum session timeout as 2 days.
The default session timeout is 30 minutes.
So far so good.
My client asked that I allow is site to have a 2 hour session.
So I simply changed the this scope variable in Application.cfc to:
<cfset this.sessiontimeout = CreateTimeSpan(0,2,0,0)>
I changed the app name so I know I have a fresh app running the new code, yet, I
logged into the app. Sat there idle for 40 minutes. Tried to click around and my
session had expired.
I've double checked my code and CF Admin. What am I doing wrong here?
Thanks,
Will
Disregard this one. I figured it out.
I forgot to check the Application.cfc in my admin subdirectory. ITS timeout was
still set to 20 minutes. :)
Thanks,
Will