Re: Session issue CF10

2013-05-03 Thread Cameron Childress
On Thu, May 2, 2013 at 11:59 PM, Byron Mann byronos...@gmail.com wrote: CF 10 server with session minimum 20 minutes and maximum 2 hours. Customer service has a cfapplication tag with 24 hours for the session timeout and is stating sessions get dumped every few minutes. Well, the first

Session issue CF10

2013-05-02 Thread Byron Mann
I tried to verify this customer issue, but have been unable to replicate. CF 10 server with session minimum 20 minutes and maximum 2 hours. Customer service has a cfapplication tag with 24 hours for the session timeout and is stating sessions get dumped every few minutes. This is happening

RE: Quick question on session issue (hopefully)

2008-11-16 Thread Adrian Lynch
too. Adrian Building a database of ColdFusion errors at http://cferror.org/ -Original Message- From: Dave Phillips Sent: 15 November 2008 23:30 To: cf-talk Subject: Re: Quick question on session issue (hopefully) Well, that didn't help either. I moved it to another server and it works

Quick question on session issue (hopefully)

2008-11-15 Thread Dave Phillips
Hey folks, I have a quick question (hopefully). Something weird is going on, and I can’t place it, and I’m feeling like I'm having a brain freeze…. This shouldn’t be an issue. I have a simple application in MX 7. Application.cfm has the following: cfapplication name=zarts_tag5

Re: Quick question on session issue (hopefully)

2008-11-15 Thread Brad Wood
on session issue (hopefully) Hey folks, I have a quick question (hopefully). Something weird is going on, and I canâ?Tt place it, and Iâ?Tm feeling like I'm having a brain freezeâ?¦. This shouldnâ?Tt be an issue. ~| Adobe

Re: Quick question on session issue (hopefully)

2008-11-15 Thread Dan Switzer
Dave, If your browser is blocking cookies and you're not passing in the session tokens, then your session info will be lost. Make sure that the cookies are indeed being used by your browsers and try passing the session tokens to the URL in your window.location call. -Dan On Sat, Nov 15, 2008 at

Re: Quick question on session issue (hopefully)

2008-11-15 Thread Dave Phillips
To answer both Brad and Dan: Brad: Yes, I have dumped the session and CFID, CFTOKEN and SESSION ID are all the same in both dumps. The dump in login_exec.cfm that shows session.isAuthorized value of true, and the dump in statistics.cfm that shows session.isAuthorized false, right after the

Re: Quick question on session issue (hopefully)

2008-11-15 Thread Barney Boisvert
different application names? On 11/15/08, Dave Phillips [EMAIL PROTECTED] wrote: To answer both Brad and Dan: Brad: Yes, I have dumped the session and CFID, CFTOKEN and SESSION ID are all the same in both dumps. The dump in login_exec.cfm that shows session.isAuthorized value of true, and

Re: Quick question on session issue (hopefully)

2008-11-15 Thread Brad Wood
Subject: Re: Quick question on session issue (hopefully) To answer both Brad and Dan: ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk

Re: Quick question on session issue (hopefully)

2008-11-15 Thread Dave Phillips
Same application name. I even tried this: Instead of redirecting, I did the following in login_exec.cfm: cfdump var=#session# cfset session.isAuthorized = true a href=statistics.cfmStatistics/a cfdump var=#session# cfabort When I got to this page, I could see my session.isAuthorized was set to

Re: Quick question on session issue (hopefully)

2008-11-15 Thread Judah McAuley
Try appending cfid and cftoken to the url before going to your statistics page. If the cfid/cftoken stays the same and your session sticks, then you'll know that something is going on with the cookies. Judah On Sat, Nov 15, 2008 at 1:11 PM, Dave Phillips [EMAIL PROTECTED] wrote: Same

Re: Quick question on session issue (hopefully)

2008-11-15 Thread Dave Phillips
Well, that didn't help either. I moved it to another server and it works fine, so apparently my code is not the issue. I restarted ColdFusion and that didn't help the situation either. The bottom line is, my session variables aren't getting persisted, but only on this machine. Again, I've

Ajaxproxy / Session Issue

2008-02-21 Thread Todd Rafferty
Hey all, Scott Bennet posted via his blog about cfajaxproxy and working with sessions. http://www.coldfusionguy.com/ColdFusion/blog/index.cfm/2007/11/12/CF8-AJAX-Features-CFLayout-Typetab--Saving-Selected-Tab-State-In-Session

Session Issue

2004-11-22 Thread Phillip Perry
Hi, I'm using both session vars. and cookies to help with login. Session is used only for people who dont want to stay logged in permanently and the cookie is used only if they want to stay permanently logged in. The problem I'm having is that when the session times out the user has to log in

Re: Session Issue

2004-11-22 Thread Larry White
The session vars are stored on the server and are normally tracked by CF using the cookie CFID/CFTOKEN pair. Simply setting a cookie will not enable CF to track session vars permanently. Hi, I'm using both session vars. and cookies to help with login. Session is used only for people who dont

Re: Session Issue

2004-11-22 Thread Greg Morphis
Could you say (in psuedocode) If cookie.value exists set session.value... Basically when they hit the page check for the cookie values.. If those values exist set the values of the session variables On Mon, 22 Nov 2004 11:16:07 -0500, Phillip Perry [EMAIL PROTECTED] wrote: Hi, I'm using

RE: Session Issue

2004-11-22 Thread Martin Parry
: Session Issue The session vars are stored on the server and are normally tracked by CF using the cookie CFID/CFTOKEN pair. Simply setting a cookie will not enable CF to track session vars permanently. Hi, I'm using both session vars. and cookies to help with login. Session is used only

Sticky session issue with CFMX/JRun and Netscape 7.x

2003-08-31 Thread Stacy Young
I've been testing our new cluster setup today (CFMX 6.1 on JRun) and I've come across an issue with Netscape browsers. It appears that sticky sessions are not sticking. ;) Each request from the same Netscape browser instance is switching back-end servers. (I'm displaying the server id on the

SOLVED: Sticky session issue with CFMX/JRun and Netscape 7.x

2003-08-31 Thread Stacy Young
Had to set setdomaincookies=yes ;) Stace -Original Message- From: Stacy Young Sent: Sunday, August 31, 2003 12:08 AM To: '[EMAIL PROTECTED]' Subject: Sticky session issue with CFMX/JRun and Netscape 7.x I've been testing our new cluster setup today (CFMX 6.1 on JRun) and I've come