index.cfm and / have different sessions?
Hi,
I have an applcation that has an Application.cfm file in the Application.cfm file I have the app set up for cookie session management.
<cfapplication
name="app"
clientmanagement="yes"
setclientcookies="yes"
sessionmanagement="yes"
sessiontimeout="#CreateTimeSpan(0,2,0,0)#"
applicationtimeout="#CreateTimeSpan(10,0,0,0)#">
all of the following pages are in the root directory for a site
ex: devsite.company.com/
If i got to page login and set session.accountid, session.accountid is set for all pages EXCEPT the index.cfm page.
If i go to devsite.company.com/ session vars are INCORRECT
devsite.company.com/index.cfm session vars are INCORRECT
devsite.company.com/login.cfm session cars correct
devsite.company.com/xyz.cfm session vars are correct
what the heck could be up with the index.cfm page? why is it using a different session?
thanks for any help or ideas
