RE: Session variables not working

2012-02-28 Thread Rick Faircloth
Thanks for that reminder... it's been years since I've even used cflocation! My how knowledge, unused, is fleeting... -Original Message- From: Azadi Saryev [mailto:azadi.sar...@gmail.com] Sent: Monday, February 27, 2012 9:20 PM To: cf-talk Subject: Re: Session variables not working

RE: Session variables not working

2012-02-28 Thread Rick Faircloth
I normally use an application.cfc, but this was just a quick proof-of-concept that I threw together to test something. -Original Message- From: James Holmes [mailto:james.hol...@gmail.com] Sent: Monday, February 27, 2012 10:56 PM To: cf-talk Subject: Re: Session variables not working

RE: Session variables not working

2012-02-28 Thread Rick Faircloth
Thanks, Jay! Rick -Original Message- From: Jay Pandya [mailto:jaypandy...@gmail.com] Sent: Tuesday, February 28, 2012 12:49 AM To: cf-talk Subject: Re: Session variables not working Hi Rick, When you are using session variables and you want to get its value in other page

Session variables not working

2012-02-27 Thread Rick Faircloth
It's been awhile since I used session variables, but this is simple. Why won't this work? session-test.cfm cfset session.name = 'rick' cfoutput#session.name#/cfoutput cflocation url=session-test-2.cfm session-test-2.cfm -- cfoutput#session.name#/cfoutput

Re: Session variables not working

2012-02-27 Thread Steve Milburn
Have you enabled session management in the application.cfc? On Mon, Feb 27, 2012 at 3:14 PM, Rick Faircloth r...@whitestonemedia.comwrote: It's been awhile since I used session variables, but this is simple. Why won't this work? session-test.cfm cfset session.name =

RE: Session variables not working

2012-02-27 Thread Rick Faircloth
:18 PM To: cf-talk Subject: Re: Session variables not working Have you enabled session management in the application.cfc? On Mon, Feb 27, 2012 at 3:14 PM, Rick Faircloth r...@whitestonemedia.comwrote: It's been awhile since I used session variables, but this is simple. Why won't this work

Re: Session variables not working

2012-02-27 Thread Russ Michaels
with session management being enabled in application.cfc? Rick -Original Message- From: Steve Milburn [mailto:scmilb...@gmail.com] Sent: Monday, February 27, 2012 3:18 PM To: cf-talk Subject: Re: Session variables not working Have you enabled session management in the application.cfc

RE: Session variables not working

2012-02-27 Thread Rick Faircloth
, February 27, 2012 3:18 PM To: cf-talk Subject: Re: Session variables not working Have you enabled session management in the application.cfc? On Mon, Feb 27, 2012 at 3:14 PM, Rick Faircloth r...@whitestonemedia.comwrote: It's been awhile since I used session variables, but this is simple. Why

Re: Session variables not working

2012-02-27 Thread Steve Milburn
Message- From: Steve Milburn [mailto:scmilb...@gmail.com] Sent: Monday, February 27, 2012 3:18 PM To: cf-talk Subject: Re: Session variables not working Have you enabled session management in the application.cfc? On Mon, Feb 27, 2012 at 3:14 PM, Rick Faircloth r

Re: Session variables not working

2012-02-27 Thread Steve Milburn
...@gmail.com] Sent: Monday, February 27, 2012 3:18 PM To: cf-talk Subject: Re: Session variables not working Have you enabled session management in the application.cfc? On Mon, Feb 27, 2012 at 3:14 PM, Rick Faircloth r...@whitestonemedia.comwrote: It's been awhile since I used session

RE: Session variables not working

2012-02-27 Thread Rick Faircloth
Thanks for the reminder! Rick -Original Message- From: Steve Milburn [mailto:scmilb...@gmail.com] Sent: Monday, February 27, 2012 3:42 PM To: cf-talk Subject: Re: Session variables not working Correction on my previous post: The variable was stored in variables.session.name

Re: Session variables not working

2012-02-27 Thread Azadi Saryev
Subject: RE: Session variables not working There's no application.cfc at this point...the only two pages involved are what's in this email. Is enabling session management in an application.cfc necessary for session management to work? As you can see below when I use: cfset session.name

Re: Session variables not working

2012-02-27 Thread James Holmes
but not session variables between pages with session management being enabled in application.cfc? Rick -Original Message- From: Steve Milburn [mailto:scmilb...@gmail.com] Sent: Monday, February 27, 2012 3:18 PM To: cf-talk Subject: Re: Session variables not working Have you

Re: Session variables not working

2012-02-27 Thread Jay Pandya
Hi Rick, When you are using session variables and you want to get its value in other page after using cflocation then you need to enable seclientcookies true in cfapplication tag. More description you can read on

Session variables not working despite being enabled?

2004-09-30 Thread Damien McKenna
Here's my cfapplication tag: cfapplication sessionmanagement=yes setclientcookies=yes name=Secure3 clientmanagement=yes setdomaincookies=yes / Sessions are turned on in the server. I set session variables on one template but it doesn't show up on another which is included right afterwards.Any

Re: Session variables not working despite being enabled?

2004-09-30 Thread Lawrence Ng
was it cflocated before the redirection? [EMAIL PROTECTED] 9/30/2004 12:47:32 PM Here's my cfapplication tag: cfapplication sessionmanagement=yes setclientcookies=yes name=Secure3 clientmanagement=yes setdomaincookies=yes / Sessions are turned on in the server. I set session variables on

Re: Session variables not working despite being enabled?

2004-09-30 Thread Damien McKenna
OK, a major case of hoof-and-mouth disease there.I was using an incorrectly named variable, so of course it couldn't find it. Bah. Thanks Lawrence. -- *Damien McKenna* - Web Developer - [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014

Problem with session variables not working

2001-02-14 Thread Eric V. Hodge
I have a production server that's running 4.0 which does not allow session and client variables to work. I have enabled them on the server and double checked my cfapplication tags to ensure the client and session management are set to 'Yes'. What else could be the problem. It is only

RE: Problem with session variables not working

2001-02-14 Thread Christoph Schmitz
session or client variables from one application to another, are you? HTH, Chris --Original Message-- From: "Eric V. Hodge" [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: February 14, 2001 12:39:54 PM GMT Subject: Problem with session variables not working I have a

Re: Problem with session variables not working

2001-02-14 Thread Eric V. Hodge
: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, February 14, 2001 7:51 AM Subject: RE: Problem with session variables not working Hi, CF 4.0 has a bug in that it identifies the session not by the combination of CFID and CFTOKEN, but, just by CFID alone. In case you indeed checked all settin