RE: session question set & clear

2006-06-09 Thread Ben Nadel
eople call me the space cowboy. Some people call me the gangster of love." -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED] Sent: Friday, June 09, 2006 4:31 PM To: CF-Talk Subject: session question set & clear i am new to session & application variables &am j

session question set & clear

2006-06-09 Thread Paul Ihrig
i am new to session & application variables &am just trying to figure out a way to make a pop-up only display once per session. and only if the last message entered in the db is set to active. any help would be awesome. just so i can understand this simple thing.. thanks! -paul ok i have an appl

RE: Session question

2005-03-11 Thread Martin Parry
LOL Martin Parry Macromedia Certified Developer http://www.BeetrootStreet.co.uk -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: 11 March 2005 10:24 To: CF-Talk Subject: RE: Session question You can get a cream for that

RE: Session question

2005-03-11 Thread James Holmes
You can get a cream for that... -Original Message- From: Martin Parry [mailto:[EMAIL PROTECTED] Sent: Friday, 11 March 2005 5:56 To: CF-Talk Subject: RE: Session question I know - There's a few times I've (and I'm sure most everybody here) posted solutions/advice and g

RE: Session question

2005-03-11 Thread Martin Parry
Sent: 11 March 2005 09:51 To: CF-Talk Subject: RE: Session question Thanks for posting the resolution. It's amazing how many people don't bother when they fix it themselves. ~| Logware (www.logware.us): a new and

RE: Session question

2005-03-11 Thread James Holmes
Thanks for posting the resolution. It's amazing how many people don't bother when they fix it themselves. -Original Message- From: Martin Parry [mailto:[EMAIL PROTECTED] Sent: Friday, 11 March 2005 5:28 To: CF-Talk Subject: RE: Session question I THINK I've got to the

RE: Session question

2005-03-11 Thread Martin Parry
ed Rypka-Hauer - CMG, LLC [mailto:[EMAIL PROTECTED] Sent: 11 March 2005 03:07 To: CF-Talk Subject: Re: Session question To your original question... every click resets the session timer. It only times out IF they have not commited an action (link, form post, etc.) after the timeout value. And you

Re: Session question

2005-03-10 Thread Jared Rypka-Hauer - CMG, LLC
Since I usually have the poor judgement to rely on the cfapplication tag for maintaining session state, I always get cftoken, cfid, and all that... big... clumsy number stuff... mixed up. I've never had a real issue with a site before, though. My issues with not maintaining sessions have been isola

RE: Session question

2005-03-08 Thread Martin Parry
media Certified Developer http://www.BeetrootStreet.co.uk -Original Message- From: Jared Rypka-Hauer - CMG, LLC [mailto:[EMAIL PROTECTED] Sent: 08 March 2005 13:11 To: CF-Talk Subject: Re: Session question Make sure you're either using setclientcookies="true" or passing CFID/C

Re: Session question

2005-03-08 Thread Jared Rypka-Hauer - CMG, LLC
form I'm sure, but I'm damned > desperate. > > Cheers Neil > > Martin Parry > Macromedia Certified Developer > http://www.BeetrootStreet.co.uk > > > -Original Message----- > From: Robertson-Ravo, Neil (RX) > [mailto:[EMAIL PROTECTED] > Sent:

RE: Session question

2005-03-08 Thread Robertson-Ravo, Neil (RX)
Even on a single IP the users should still get a separate CFID/CFTOKEN so they should have individual session timeouts. -Original Message- From: Martin Parry [mailto:[EMAIL PROTECTED] Sent: 08 March 2005 10:48 To: CF-Talk Subject: RE: Session question Yeah, that's what I figure

RE: Session question

2005-03-08 Thread Martin Parry
form I'm sure, but I'm damned desperate. Cheers Neil Martin Parry Macromedia Certified Developer http://www.BeetrootStreet.co.uk -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: 08 March 2005 10:50 To: CF-Talk Subject: RE: Session question Not s

RE: Session question

2005-03-08 Thread Robertson-Ravo, Neil (RX)
al Message- From: Martin Parry [mailto:[EMAIL PROTECTED] Sent: 08 March 2005 10:32 To: CF-Talk Subject: Session question Can anyone clarify if when you set a session variable it automatically extends the user's session to whatever the session timeout is ?? I'm having terrible troubl

Session question

2005-03-08 Thread Martin Parry
Can anyone clarify if when you set a session variable it automatically extends the user's session to whatever the session timeout is ?? I'm having terrible troubles with users having sessions cleared although I've implemented a hidden iFrame that navigates to a page to set session.currentTime wit

RE: Elementary session question

2004-12-08 Thread Figy, Kam
ad of indirectly tying part of the session vars to the browser session. Kam -Original Message- From: Web Exp [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 07, 2004 11:35 AM To: CF-Talk Subject: Re: Elementary session question Kam: Are you suggesting that I should store my resultset

Re: Elementary session question

2004-12-07 Thread Web Exp
as disappeared, > so when they come back their cache will get cleared. > > Alternatively you could clear the whole session struct to kill the whole > session using StructClear(SESSION). > > Hth > > > Kam > -Original Message- > From: Web Exp [mailto:[EMAIL PROTECTED

RE: Elementary session question

2004-12-07 Thread Dave Watts
> Hi. I am new to session management in CF. My application > inserts certain records into the database. After inserting > each record, the user gets to see all the records that he > added in this particular session. > If the user closes browser, and adds more records, he should > not see the on

RE: Elementary session question

2004-12-07 Thread Dave Watts
> CF session variables are based on a timeout and (as far as I > know) cannot be made to expire when a browser is closed. An > option might be to set a browser session cookie (the default > behavior of cfcookie) which will expire when the browser > closes, and check that - if it no longer exist

RE: Elementary session question

2004-12-07 Thread Figy, Kam
will get cleared. Alternatively you could clear the whole session struct to kill the whole session using StructClear(SESSION). Hth Kam -Original Message- From: Web Exp [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 07, 2004 10:39 AM To: CF-Talk Subject: Re: Elementary session que

RE: Elementary session question

2004-12-07 Thread Paul
tions_with_CFML/sharedVars5.htm -Original Message- From: Web Exp [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 07, 2004 11:39 AM To: CF-Talk Subject: Re: Elementary session question Thanks Kam, But I need to identify the records entered for that session. So, what information (other than cfid and

Re: Elementary session question

2004-12-07 Thread Web Exp
d recreate the cookie. > > There might be better ways but that's my offhand take. > > Kam > > > > -Original Message- > From: Web Exp [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 07, 2004 10:04 AM > To: CF-Talk > Subject: Elementary sess

RE: Elementary session question

2004-12-07 Thread Figy, Kam
your session records cache and recreate the cookie. There might be better ways but that's my offhand take. Kam -Original Message- From: Web Exp [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 07, 2004 10:04 AM To: CF-Talk Subject: Elementary session question Hi. I am new to se

Elementary session question

2004-12-07 Thread Web Exp
Hi. I am new to session management in CF. My application inserts certain records into the database. After inserting each record, the user gets to see all the records that he added in this particular session. If the user closes browser, and adds more records, he should not see the ones that he added

CF Session Question

2003-11-20 Thread Jim McAtee
I've got a CF5 application, an ad server, which has two distinct components. One is a management interface and the other is the mechanism for serving and tracking ads and click throughs. In the management interface I wish to use CF sessions to track user logins. The ad serving mechanism is called

RE: Session question

2002-09-09 Thread Phoeun Pha
click back and forth! -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 11:13 AM To: CF-Talk Subject: RE: Session question Ok Heres a better example We are rebuilding our accounting system with CF/Oracle... Now if this same issue

RE: Session question

2002-09-09 Thread Kris Pilles
accounting system app in a modul I can avoid this Well I guesss your right... Thanks for talkjing som logic into me -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 12:08 PM To: CF-Talk Subject: RE: Session question Well, if this is any

RE: Session question

2002-09-09 Thread Phoeun Pha
ber 09, 2002 11:00 AM To: CF-Talk Subject: RE: Session question LOL... Well the problem it may cause is that a not so computer literate wants t sign up for a class opens 2 windows and gets confused and gives up on our site.. Lol that's a reach -Original Message- From: Phoeun Pha [ma

RE: Session question

2002-09-09 Thread Kris Pilles
11:55 AM To: CF-Talk Subject: RE: Session question ermm you don't can't fix it lol. It's kinda like saying, "Boss, there's a bug in this array. Everytime I delete an element in the array, the array elements realign themselves!" It's not a bug! There's n

RE: Session question

2002-09-09 Thread Phoeun Pha
[mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 10:44 AM To: CF-Talk Subject: RE: Session question Well. I don't really see the big deal but since im a morona and mentioned this issue to my boss now I have to fix it So, any help would be appreciated. Thanks Kris Pilles Kris Pil

RE: Session question

2002-09-09 Thread Kris Pilles
Well. I don't really see the big deal but since im a morona and mentioned this issue to my boss now I have to fix it So, any help would be appreciated. Thanks Kris Pilles Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267 E-mail: [EMA

RE: Session question

2002-09-09 Thread Phoeun Pha
Sent: Monday, September 09, 2002 10:26 AM To: CF-Talk Subject: Session question Over the weekend I noticed a bug in my shopping carts session management. I don't know how to fix it... Basically if your within the realms of my cart and the user hits file new and opens a new window. We are

Session question

2002-09-09 Thread Kris Pilles
Over the weekend I noticed a bug in my shopping carts session management. I don't know how to fix it... Basically if your within the realms of my cart and the user hits file new and opens a new window. We are currently not creating new sessions but the same session is carried over to the 2nd win

RE: Baffling Session Question

2002-06-27 Thread Mark Leder
Great tips - thanks for helping me out. Thanks, Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 27, 2002 6:31 PM To: CF-Talk Subject: Re: Baffling Session Question Wrap the value in quotes. #SESSION.ecom.FirstName#"> Also,

Re: Baffling Session Question

2002-06-27 Thread ksuh
ge - From: Mark Leder <[EMAIL PROTECTED]> Date: Thursday, June 27, 2002 3:55 pm Subject: Baffling Session Question > I have a form page who's fields I put in a session scoped > Structure and > then pass to a summary page so the end user can review the just- > entereddata. &

Baffling Session Question

2002-06-27 Thread Mark Leder
I have a form page who's fields I put in a session scoped Structure and then pass to a summary page so the end user can review the just-entered data. On the form field page, I create the Structure with empty keys. Upon submit, the keys populate the structure and then are passed to the summary pa

RE: SESSION question

2002-04-27 Thread Dave Watts
> I guess I'll have to pass the cfid and cftoken manually, > I know it's a security hole, but there are companies out > there that block cookies, unless there's another idea. Using URL variables for CFID and CFTOKEN isn't really any more of a security hole, all other things being equal, than us

RE: SESSION question

2002-04-26 Thread Mark Leder
ril 26, 2002 11:37 AM To: CF-Talk Subject: RE: SESSION question Mark, Are you sure they had cookies enabled? By default, sessions rely on a cookie that's written to the user's browser. If cookies are disabled, you'll have to manually send the cfid and cftoken variables to the UR

RE: SESSION question

2002-04-26 Thread Dan G. Switzer, II
essage- > From: Mark Leder [mailto:[EMAIL PROTECTED]] > Sent: Friday, April 26, 2002 10:21 AM > To: CF-Talk > Subject: SESSION question > > Can Session variables sometimes be blocked or otherwise corrupted by > passing through a corporate firewall? > > Here'

SESSION question

2002-04-26 Thread Mark Leder
Can Session variables sometimes be blocked or otherwise corrupted by passing through a corporate firewall? Here's a scenario: I have a login screen where session variables are created and then "passed" to a welcome screen. Depending on location of where a client computer is, the variables may or