Question
cfapplication in Application.cfc
I've been working on this for hours and from what I read this
should be a simple thing. I want my users to be able to login and
if they aren't I want the login webpage to display so they can. My
login page is called loginform.cfm.
In my Application.cfc file I have the following:
<!--- activate session variables for login--->
<cfapplication name="guiDb"
sessionmanagement="yes">
When I try to run loginform.cfm I get the following error:
The system has attempted to use an undefined value, which usually indicates a programming error, either in your code or some system code.
Null Pointers are another name for undefined values.
The error occurred in /usr/local/www/taxw/taxweb/gui/Application.cfc: line 45
43 : <!--- activate session variables for login--->
44 : <cfapplication name="guiDb"
45 : sessionmanagement="yes">
Can someone tell me what's wrong? Thanks
In my Application.cfc file I have the following:
<!--- activate session variables for login--->
<cfapplication name="guiDb"
sessionmanagement="yes">
When I try to run loginform.cfm I get the following error:
The system has attempted to use an undefined value, which usually indicates a programming error, either in your code or some system code.
Null Pointers are another name for undefined values.
The error occurred in /usr/local/www/taxw/taxweb/gui/Application.cfc: line 45
43 : <!--- activate session variables for login--->
44 : <cfapplication name="guiDb"
45 : sessionmanagement="yes">
Can someone tell me what's wrong? Thanks
