Following code is on our tstsrv and devsrv. It creates a
structure entry for each new user on the devsrv but on
tstsrv it only creates a structure entry for current user.
I have checked every setting on the coldfusion server and
made them the same. Rebooted both systems, no joy.
Why does the darn thing work on the devsrv but not tstsrv.
I deleted the entire directory on devsrv and copied it
fresh from tstsrv, devsrv works, tstsrv doesn't.
Any help would be appreciated.
<!--- If Session-Tracker structure does not exist, generate it --->
<CFLOCK TIMEOUT="30" SCOPE="APPLICATION" TYPE="Exclusive">
<cfif NOT isDefined("application.SessionTracker"
>
<cfset application.SessionTracker=StructNew()>
</cfif>
<!--- Log current user for reference in livemon.cfm --->
<cfset stuUser = StructNew()>
<cfset stuUser.aUser = cgi.remote_addr>
<cfset stuUser.LoginTime = Now()>
<cfset stuUser.Session = session.sessionid>
<cfset dummy = StructInsert(application.SessionTracker, stuUser.aUser, stuUser, true)
</cflock>
structure entry for each new user on the devsrv but on
tstsrv it only creates a structure entry for current user.
I have checked every setting on the coldfusion server and
made them the same. Rebooted both systems, no joy.
Why does the darn thing work on the devsrv but not tstsrv.
I deleted the entire directory on devsrv and copied it
fresh from tstsrv, devsrv works, tstsrv doesn't.
Any help would be appreciated.
<!--- If Session-Tracker structure does not exist, generate it --->
<CFLOCK TIMEOUT="30" SCOPE="APPLICATION" TYPE="Exclusive">
<cfif NOT isDefined("application.SessionTracker"
<cfset application.SessionTracker=StructNew()>
</cfif>
<!--- Log current user for reference in livemon.cfm --->
<cfset stuUser = StructNew()>
<cfset stuUser.aUser = cgi.remote_addr>
<cfset stuUser.LoginTime = Now()>
<cfset stuUser.Session = session.sessionid>
<cfset dummy = StructInsert(application.SessionTracker, stuUser.aUser, stuUser, true)
</cflock>