A client of mine who uses AOL is having problems logging into the CMS which
I built for her. I believe I've narrowed it down to a session variable
thing. The website either doesn't see the var or it thinks that the var is
false when it should be true.

Here's the line from my app.cfm file:

<cfapplication name="no" sessionmanagement="Yes" setclientcookies="Yes"
sessiontimeout="#createtimespan(1,0,0,0)#" clientmanagement="yes"
clientstorage="cookie">

Here's how I log her in:
<cfset session.loggedin = 1>

Then on every page of the site (in the header include) I have this code:
<cfif NOT IsDefined("SESSION.loggedin") OR SESSION.loggedin IS 0>
        <cflocation url="index.cfm?unlog" addToken="no">
</cfif>

It let's her IN to the site, but when she tries to access any of the pages
in the admin section it dumps her back to the login screen. I found this
page on AOL's site about enabling cookies, but it didn't help.
http://webmaster.info.aol.com/cookieguide.html

Does anyone have any ideas about this?

<!----------------//------
andy matthews
web developer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--------------//--------->


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219658
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to