Re: [ACFUG Discuss] Session variables

2010-03-05 Thread Moises Alejandro Zamora Villasana
Thanks for the hints Regards --Original Message-- From: techsupport To: Atlanta Cold Fusion User Groups ReplyTo: Atlanta Cold Fusion User Groups Subject: Re: [ACFUG Discuss] Session variables Sent: Mar 5, 2010 8:01 PM I have had the same issue and Tom's response is exactly what I did. W

Re: [ACFUG Discuss] Session variables

2010-03-05 Thread techsupport
I have had the same issue and Tom's response is exactly what I did. When I send the email, I pass a variable that tells my gateway page where the person is trying to go. It checks for the session variable and then sends it merrily along AFTER they've logged in because it knows where to send the

Re: [ACFUG Discuss] Session variables

2010-03-05 Thread Forrest C. Gilmore
If you use the more standard type of CF security, all files in the directory where the application.cfm and the security files are located will not run if the user is not logged in. If you have a page that you wish anyone to be able to view (people not logged in), then you must place it in a direc

Re: [ACFUG Discuss] Session variables

2010-03-05 Thread Tom McNeer
Hi Moises, In general, what you want to do is this: as a request is being processed (perhaps within the OnRequest method of Application.cfc, or elsewhere if you're using a framework), you need to check to see if the user is logged in, probably by checking for existence of some session variable. So

[ACFUG Discuss] Session variables

2010-03-05 Thread Moises Alejandro Zamora Villasana
Hi, I have an application where I ‘m using session variables where I force the users to log in. So, my question is what can I do If I want to send a link in an email that link a specific page that display results? That page has session variables and when I try to access directly displayme t