I inherited a site that uses session variables to track users' paths through the site and to handle the Admin login section.  The code worked fine until yesterday when it suddenly stopped working.  The only information I get is "Processing Error".  Does anyone have any idea why it suddenly stopped working?  One of the admins was able to log in as recently as 6/1.

Here's the code in the Application.cfm file:

<cfapplication
name="solarcenter"
sessionmanagement="Yes"
clientmanagement="Yes"
applicationtimeout=#createTimespan(0,0,90,0)#
sessiontimeout=#CreateTimespan(0,0,90,0)#>


<cflock name="#APPLICATION.applicationName#"
        type="Exclusive"
        timeout="20"
        throwontimeout="Yes">
<!--- If Session-Tracker does not exist, generate it --->
<cfparam name="APPLICATION.SessionTracker" default=#StructNew()#>
<!--- Log current user --->
<cfscript>
sUserInfo = StructNew();
sUserInfo.Address="#CGI.REMOTE_ADDR#";
sUserInfo.CFID="#session.cfid#";
sUserInfo.Token="#session.cftoken#";
sUserInfo.Address="#CGI.REMOTE_ADDR#";
sUserInfo.Time="#Now()#";
sUserInfo.Template="#CGI.CF_Template_Path#";
ID = "#session.cfid##session.cftoken#";
</cfscript>
<cfset dummy = StructInsert(APPLICATION.SessionTracker, ID, sUserInfo, true)>
</cflock>
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to