|
|
hello,
we are using CF6.1. I have an app called appname. Below is the
application.cfm (it's a short one). When I
uncomment the cfif at the bottom, all pages that use this
application.cfm hang. I never let it run until it errors to
get an actual error msg. Any ideas why this may be causing the hang
are appreciated. Thanks in advance.
joled
<CFSETTING enableCfoutputOnly="yes">
<CFAPPLICATION NAME="appname"
SESSIONMANAGEMENT="YES"
SESSIONTIMEOUT=#CreateTimeSpan(0,1,00,0)#>
<cfset SESdummyExtension = ".cfm">
<cfset SESrBaseName = "baseHREF">
<cfinclude template="sesConverter.cfm">
<CFIF IsDefined("variables.baseHref")>
<cfoutput><base href="#variables.baseHref#"></cfoutput>
</CFIF>
<CFLOCK name="AppLock#session.cfid#_#session.cftoken#" timeout="600">
<CFSET dsn = "somejdb">
<CFSET who = "something">
<CFSET dwho = "something">
<CFSET swd = "http">
<CFSET addt ="yes">
<CFSET session.cccdir = "something">
<CFPARAM name="session.logname" default="">
<CFPARAM name="session.AppComm" default="N">
</CFLOCK>
<CFSETTING enableCfoutputOnly="no">
<cfparam name="session.loggedin2Maint" default="N">
<!--- <cfif session.loggedin2Maint is "N">
<cflocation URL="menu.cfm?emess=1">
</cfif> --->
|
|