ToonKayser
Programmer
Hi All,
We installed a new cf4.5-server (W2000) and copied all of our scripts and database from our produktionserver to that new server.
The problem occurs that session management doesn't seem to work anymore.
This is my application.cfm:
<cfapplication name="ws" SESSIONMANAGEMENT="YES" sessiontimeout=#CreateTimeSpan(1,13,1,1)#
applicationtimeout=#CreateTimeSpan(1,13,1,1)#
setclientcookies="yes" clientstorage="Cookie" clientmanagement="yes">
<CFIF ISDEFINED("Cookie.CFID" AND ISDEFINED("Cookie.CFTOKEN">
<CFSET CFID_LOCAL = COOKIE.CFID>
<CFSET CFTOKEN_LOCAL = COOKIE.CFTOKEN>
<CFCOOKIE NAME="CFID" VALUE="#cfid_local#">
<CFCOOKIE NAME="CFTOKEN" VALUE="#cftoken_local#">
</CFIF>
I can see that a cookie is placed on my local disk.
On the server there are entries in the registry regarding the proper cfid and cftoken.
But when I display the session-variables I can see that once I display a new screen, a new cfid is set.
So I lose all of my session variables.
And now the odd thing: it worked at first!
I tested and all was working fine. Until to some point, suddenly it didn't work anymore.
I asked our systemadministrators but they didn't change things (have to believe that) and the oracle administrator did some Minor changes but this shouldn't affect coldfusion.
My ColdFusion services all run under a certain user which is in the administrator group, not under LocalSystem.
I checked coldfusion administration to make sure that session management is set.
Is there someone out there to help me with this?
Thanks in advance
Toon
We installed a new cf4.5-server (W2000) and copied all of our scripts and database from our produktionserver to that new server.
The problem occurs that session management doesn't seem to work anymore.
This is my application.cfm:
<cfapplication name="ws" SESSIONMANAGEMENT="YES" sessiontimeout=#CreateTimeSpan(1,13,1,1)#
applicationtimeout=#CreateTimeSpan(1,13,1,1)#
setclientcookies="yes" clientstorage="Cookie" clientmanagement="yes">
<CFIF ISDEFINED("Cookie.CFID" AND ISDEFINED("Cookie.CFTOKEN">
<CFSET CFID_LOCAL = COOKIE.CFID>
<CFSET CFTOKEN_LOCAL = COOKIE.CFTOKEN>
<CFCOOKIE NAME="CFID" VALUE="#cfid_local#">
<CFCOOKIE NAME="CFTOKEN" VALUE="#cftoken_local#">
</CFIF>
I can see that a cookie is placed on my local disk.
On the server there are entries in the registry regarding the proper cfid and cftoken.
But when I display the session-variables I can see that once I display a new screen, a new cfid is set.
So I lose all of my session variables.
And now the odd thing: it worked at first!
I tested and all was working fine. Until to some point, suddenly it didn't work anymore.
I asked our systemadministrators but they didn't change things (have to believe that) and the oracle administrator did some Minor changes but this shouldn't affect coldfusion.
My ColdFusion services all run under a certain user which is in the administrator group, not under LocalSystem.
I checked coldfusion administration to make sure that session management is set.
Is there someone out there to help me with this?
Thanks in advance
Toon