RE: client variables changing?...

2002-06-25 Thread Dave Watts
The cfid:cftoken values are not being passed in the url. This seems to be happening during the session, after an order is placed. I'm really kink of grabbing for straws here because I haven't changed the app framework for at least 6 months, and nothing internally changed recently. Are

RE: client variables changing?...

2002-06-25 Thread Houk, Gary
PROTECTED]] Sent: Tuesday, June 25, 2002 3:53 PM To: CF-Talk Subject: Re: client variables changing?... do you have any cflocation tags anywhere that might have a addtoken=yes Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: Houk, Gary [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: client variables changing?...

2002-06-25 Thread Douglas Brown
Subject: RE: client variables changing?... yes, only on the application page in this context: !--- TEST TO SEE IF SESSION HAS TIMED OUT AFTER A SUCCESSFUL LOGIN --- cfif client.login is true cfif datediff(#variables.timespan#, client.lastvisit, now()) gte variables.timeout !--- RESET

RE: client variables changing?...

2002-06-25 Thread Houk, Gary
Yeah, I did a search within my entire project and only found that one instance. - Gary -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 4:10 PM To: CF-Talk Subject: Re: client variables changing?... Also check cflocation where

Re: client variables changing?...

2002-06-25 Thread Douglas Brown
- From: Houk, Gary [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, June 25, 2002 1:19 PM Subject: RE: client variables changing?... Yeah, I did a search within my entire project and only found that one instance. - Gary -Original Message- From: Douglas Brown [mailto:[EMAIL

RE: client variables changing?...

2002-06-25 Thread Houk, Gary
: Tuesday, June 25, 2002 4:29 PM To: CF-Talk Subject: Re: client variables changing?... Could there be the possibility that the one you found being the problem? Possibly when you are setting the loggedIn value to no, but their session data is still persistent. Maybe do a structClear(session) along

Re: client variables changing?...

2002-06-25 Thread Douglas Brown
[EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, June 25, 2002 1:44 PM Subject: RE: client variables changing?... I thought about running a session var just for the repid, but we are on clustered servers. As long as I enable sticky session variables in cluster cats, am I safe to run

RE: client variables changing?...

2002-06-25 Thread Dave Watts
I thought about running a session var just for the repid, but we are on clustered servers. As long as I enable sticky session variables in cluster cats, am I safe to run the session var for the repid in my app? Yes, you can do that, but then you lose two of the primary benefits of

Using Client Variables in FlashMX ? (Alex - skip)

2002-06-24 Thread Critter
oi CF-Talk,!! is it possible to write a type of iniFile in FLASH MX...or...? One of the apps I am trying to convert using cfc's and flash remoting uses client.variables, anyone know if these are handled the same way in flash mx as they are in a browser?? (mine are set to

Problems with Client Variables

2002-06-11 Thread Brian Eckerman
Hello, I am having a problem with Client Variables (Stored on the Server in SQL Server). I am setting the users permissions to a list called client.permissions, Later I test it and it is indeed getting set, but I am also getting the following error, apon which I go to the home page. Built

Re: Problems with Client Variables

2002-06-11 Thread Brook Davies
are referencing the wrong datasource somewhere. Either in the CFadmin or in your cfapplication tag. At 10:16 AM 11/06/02 -0400, you wrote: Hello, I am having a problem with Client Variables (Stored on the Server in SQL Server). I am setting the users permissions to a list called client.permissions

RE: Problems with Client Variables

2002-06-11 Thread Dave Watts
I checked the Server, the tables CDATA, and CGLOBAL do exist. Make sure that within your datasource, you've specified the correct database name. If you create a SQL Server datasource, but omit the database name, you'll use the default database (which is often master unless you've configured

RE: Problems with Client Variables

2002-06-11 Thread Ian Lurie
When this started happening to us, we had to recreate the client var store. That fixed the issue and we haven't seen it since -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 7:36 AM To: CF-Talk Subject: Re: Problems with Client Variables

RE: Problems with Client Variables

2002-06-11 Thread Kevan . Windle
is invalid. -Original Message- From: Brian Eckerman [mailto:[EMAIL PROTECTED]] Sent: 11 June 2002 15:17 To: CF-Talk Subject: Problems with Client Variables Hello, I am having a problem with Client Variables (Stored on the Server in SQL Server). I am setting the users permissions

RE: Problems with Client Variables

2002-06-11 Thread Brian Eckerman
, 2002 10:27 AM To: CF-Talk Subject: RE: Problems with Client Variables When this started happening to us, we had to recreate the client var store. That fixed the issue and we haven't seen it since -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11

Can I do this with CF client variables?

2002-04-23 Thread Jim McAtee
I'm developing a discussion application where logins are required, but I'd like to recognize returning members without a login. So, I'll use a cookie. A little bit simpler is to use CF client variables (cookie based). My question is whether it will be possible to have a person automatically

Re: Can I do this with CF client variables?

2002-04-23 Thread Jim McAtee
I'm probably making it more complex than it needs to be. If I'm setting CF client variables, for instance, just a UserID to identify a returning member (customer, employee, whatever), will CF recognize the returning client from more than one computer? Maybe my misunderstanding stems from

RE: Can I do this with CF client variables?

2002-04-23 Thread BillyC
:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 4:28 PM To: CF-Talk Subject: Re: Can I do this with CF client variables? I'm probably making it more complex than it needs to be. If I'm setting CF client variables, for instance, just a UserID to identify a returning member (customer, employee

Re: Can I do this with CF client variables?

2002-04-23 Thread Jim McAtee
- Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, April 23, 2002 3:37 PM Subject: RE: Can I do this with CF client variables? Each instance of a variable is 1:1, but there's no reason why multiple instances of a variable cannot contain the same value

Client Variables

2002-03-22 Thread Bosky, Dave
If I have clientmanagement =yes and setclientcookies=no in my application.cfm file, how does cf identify specific users in the index.cfm file? I understand you must append the client.urltoken to all pages if setclientcookies=no but how does index.cfm find the client.urltoken? Probably a silly

RE: Client Variables

2002-03-22 Thread Pascal Peters
CF creates it if it doesn't exist. This means on the page the user calls first. On the next pages it exists if you passed it on the url. -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: vrijdag 22 maart 2002 15:00 To: CF-Talk Subject: Client Variables If I have

RE: Client Variables

2002-03-22 Thread Bosky, Dave
Peters [mailto:[EMAIL PROTECTED]] Sent: Friday, March 22, 2002 9:05 AM To: CF-Talk Subject: RE: Client Variables CF creates it if it doesn't exist. This means on the page the user calls first. On the next pages it exists if you passed it on the url. -Original Message- From: Bosky, Dave [mailto

RE: Client Variables

2002-03-22 Thread savan . thongvanh
: Subject: RE: Client Variables So if User A has already been to index.cfm it will automatically discover the client.urltoken and if User B hasn't been to index.cfm it will create it? How can it do this without using a cookie and how does it differentiate User A from User B? Dave -Original

RE: Client Variables

2002-03-22 Thread Pascal Peters
info without passing the tokens with every link is setting the cookies. -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: vrijdag 22 maart 2002 15:38 To: CF-Talk Subject: RE: Client Variables So if User A has already been to index.cfm it will automatically discover

RE: Client Variables

2002-03-22 Thread John McCosker
Client variables can be stored in three places, 1.a cookie 2.the registry 3.a dsn if you are not using cookies they obviously your gonna have to use one of the other two options, the registry is good for performance but must be allocated a lot of space, the dsn is a better option

RE: Client Variables

2002-03-22 Thread Bosky, Dave
22, 2002 9:49 AM To: CF-Talk Subject: RE: Client Variables If you don't set the cookies, it doesn't matter if a user already came to the site. User A comes to a page (by typing www.mysite.com) and CF detects that CFID CFTOKEN don't exist. CF creates CFID CFToken. User A goes to the next page

RE: Client Variables

2002-03-22 Thread John McCosker
the cfid and cftoken like a username and password then use the login ID, relate them this way, J -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: Friday, March 22, 2002 3:05 PM To: CF-Talk Subject: RE: Client Variables If User A has already been to (www.mysite.com

RE: Removing client variables from registry

2002-03-20 Thread Perez, Bismark
how can I clean these from the server. Do they get remove as soon as I swich to database storage or do I have to manually clean them up from the registry? TIA Bismarck __ Your ad could be here. Monies from ads go to support

RE: Removing client variables from registry

2002-03-20 Thread Carlisle, Eric
didn't risk taking chunks out of the registry, deleting client keys. Good luck :) Eric -Original Message- From: Perez, Bismark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 9:39 AM To: CF-Talk Subject: RE: Removing client variables from registry how can I clean these from

RE: Removing client variables from registry

2002-03-20 Thread Perez, Bismark
do you happen to know under what key does CF keeps the client variables on the registry? -Original Message- From: Carlisle, Eric [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 9:48 AM To: CF-Talk Subject: RE: Removing client variables from registry I took over admining

Re: Removing client variables from registry

2002-03-20 Thread Douglas Brown
HKLM/Allaire/Coldfusion/CurrentVersion/Clients Success is a journey, not a destination!! Doug Brown - Original Message - From: Perez, Bismark [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, March 20, 2002 8:15 AM Subject: RE: Removing client variables from

RE: Removing client variables from registry

2002-03-20 Thread Christine Davis
I'm currently working on this issue and found the following articles helpful: Info on Error 1450 http://www.macromedia.com/v1/handlers/index.cfm?ID=22078Method=Full Tools for removing client registry variables http://www.macromedia.com/v1/handlers/index.cfm?ID=20340Method=Full Recommended client

RE: Removing client variables from registry

2002-03-20 Thread Chuck McElwee
I missed the beginning of this thread, but for what it's worth, I found the client variable removal tool of dubious value. I did a bunch of experimentation a while back and developed a bunch of tricky code to migrate client variables from a registry to a database on an application I inherited

Database storage of client variables

2002-03-19 Thread Teel, C. Doug
I recently(in the past couple of weeks) set up a database called CFVARS to store all our client variables. It's a repository for client variable of 4 sites with different cfapplication names. A user recently received an error(below) that a duplicate key row is trying to be inserted. Could

RE: Database storage of client variables

2002-03-19 Thread Andy Ewings
Have all of your Application.cfm's have different names for the Application? -Original Message- From: Teel, C. Doug [mailto:[EMAIL PROTECTED]] Sent: 19 March 2002 16:08 To: CF-Talk Subject: Database storage of client variables I recently(in the past couple of weeks) set up a database

RE: Database storage of client variables

2002-03-19 Thread Teel, C. Doug
They do all have different names. Thanks -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 10:10 AM To: CF-Talk Subject: RE: Database storage of client variables Have all of your Application.cfm's have different names for the Application

RE: Database storage of client variables

2002-03-19 Thread Matt Robertson
storage of client variables Have all of your Application.cfm's have different names for the Application? -Original Message- From: Teel, C. Doug [mailto:[EMAIL PROTECTED]] Sent: 19 March 2002 16:08 To: CF-Talk Subject: Database storage of client variables I recently(in the past couple

Database Client Variables

2002-02-26 Thread Costas Piliotis
Hi folks. I'm been looking at the idea of using client variables stored in the database so that I can transfer some variables between cold fusion and ASP.NET. Anyways, is there any way I can force the client variables to update in the database

Client Variables

2002-02-07 Thread Shahzad.Butt
Hi I am using a DB for Clientvars. In cold fusion first I am setting CFSet Client.UserID = BlahBlah Then after redirecting to certain pages I set CFSet Client.Menuvar=Blah But problem is that for same CFID in CGLOBAL table, coldfusion is overriding previous data which is for UserID. So

Client Variables

2002-02-07 Thread Shahzad.Butt
Hi I am using a DB for Clientvars. In cold fusion first I am setting CFSet Client.UserID = BlahBlah Then after redirecting to certain pages I set CFSet Client.Menuvar=Blah But problem is that for same CFID in CGLOBAL table, coldfusion is overriding previous data which is for UserID. So

Client Variables and CFlocation

2002-01-29 Thread Neil H.
I knew that if you set a cookie and then cflocate in the same page the cookie isn't set. I realize that client variables could be affected if their default storage was cookie, however if I was using an DB for the variable storage I would suspect otherwise. My theory is incorrect for some reason

Re: Client Variables and CFlocation

2002-01-29 Thread Jeffry Houser
At 09:10 AM 01/29/2002 -0500, you wrote: I knew that if you set a cookie and then cflocate in the same page the cookie isn't set. I realize that client variables could be affected if their default storage was cookie, however if I was using an DB for the variable storage I would suspect otherwise

Re: Client Variables and CFlocation

2002-01-29 Thread ksuh
It shouldn't be doing this. If you're storing client variables in the DB, you can set client vars all you want and then cflocate. I do it all the time. Yes, this is common behavior. You see, there is no state management on the web. There is no correlation between page requests

RE: Client Variables and CFlocation

2002-01-29 Thread Dave Watts
I knew that if you set a cookie and then cflocate in the same page the cookie isn't set. I realize that client variables could be affected if their default storage was cookie, however if I was using an DB for the variable storage I would suspect otherwise. My theory is incorrect

Re: Client Variables and CFlocation

2002-01-29 Thread Neil H.
I realized I has ClientCookies=yes Neil - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, January 29, 2002 11:17 AM Subject: Re: Client Variables and CFlocation It shouldn't be doing this. If you're storing client variables in the DB, you

RE: Client Variables and CFlocation

2002-01-29 Thread Mark A. Kruger - CFG
9:11 AM To: CF-Talk Subject: RE: Client Variables and CFlocation I knew that if you set a cookie and then cflocate in the same page the cookie isn't set. I realize that client variables could be affected if their default storage was cookie, however if I was using an DB for the variable

RE: Client Variables and CFlocation

2002-01-29 Thread Jeffry Houser
At 12:10 PM 01/29/2002 -0500, you wrote: I knew that if you set a cookie and then cflocate in the same page the cookie isn't set. I realize that client variables could be affected if their default storage was cookie, however if I was using an DB for the variable storage I would

RE: How to time out a session held as client variables?

2002-01-15 Thread Bryan Love
Message- From: Mike Kear [mailto:[EMAIL PROTECTED]] Sent: Monday, January 14, 2002 9:08 PM To: CF-Talk Subject: How to time out a session held as client variables? I know how to expire a session that's been managed with session variables, but how can I expire a session that's managed

RE: How to time out a session held as client variables?

2002-01-15 Thread Mike Townend
/CFLOOP CFLOCATION URL=#Application.Root# ADDTOKEN=No CFABORT /CFIF HTH -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED]] Sent: 15 January 2002 05:08 To: CF-Talk Subject: How to time out a session held as client variables? I know how to expire a session

How to time out a session held as client variables?

2002-01-14 Thread Mike Kear
I know how to expire a session that's been managed with session variables, but how can I expire a session that's managed with client variables? I need to have a logout button, and also I need to end the session after an hour of inactivity and require the user to go back to the login screen

Re: How to time out a session held as client variables?

2002-01-14 Thread Steven Dworman
deleteclientvariables() - Original Message - From: Mike Kear [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, January 15, 2002 12:07 AM Subject: How to time out a session held as client variables? I know how to expire a session that's been managed with session variabl es

Client variables driving me up the wall!

2001-12-14 Thread A . Little
Hi all, We're storing our client variables in a SQL 2k database and the application.cfm file checks that 'client.iamid' exists, if not, sends user to the login screen. This has all been working fine, until recently, now each request from the client machine creates a new record in the Cdata

Error clearing dynamic Client Variables.

2001-12-10 Thread Angel Stewart
Hi folks! Can anyone tell me why I am getting erorrs with this code? I am trying to delete all my client.comments_#whatever# variables. CFSET CurrentDate= #StartDate# cfloop CONDITION=#CurrentDate# LTE #EndDate# CFIF

Re: Error clearing dynamic Client Variables.

2001-12-10 Thread Don Vawter
Mixing single and double quotes in your isdefined statement - Original Message - From: Angel Stewart [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, December 10, 2001 1:31 PM Subject: Error clearing dynamic Client Variables. Hi folks! Can anyone tell me why I am

RE: Error clearing dynamic Client Variables.

2001-12-10 Thread Angel Stewart
The IsDefined statement works.. It drops into the CFIF statement correctly..and then it is supposed to delete the client variables. The Deleteclientvariable is the one that isn't working. -Angel -Original Message- From: Don Vawter [mailto:[EMAIL PROTECTED]] Mixing single and double

Re: Error clearing dynamic Client Variables.

2001-12-10 Thread Don Vawter
Message - From: Angel Stewart [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, December 10, 2001 1:44 PM Subject: RE: Error clearing dynamic Client Variables. The IsDefined statement works.. It drops into the CFIF statement correctly..and then it is supposed to delete

Re: Error clearing dynamic Client Variables.

2001-12-10 Thread Tyler Clendenin
I don't understand why you need the evaluate function inside the isdefined. - Original Message - From: Angel Stewart [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, December 10, 2001 3:31 PM Subject: Error clearing dynamic Client Variables. Hi folks! Can anyone tell

RE: Error clearing dynamic Client Variables.

2001-12-10 Thread David Schmidt
this helps. -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED]] Sent: Monday, December 10, 2001 12:44 PM To: CF-Talk Subject: RE: Error clearing dynamic Client Variables. The IsDefined statement works.. It drops into the CFIF statement correctly..and then it is supposed

RESOLVED: Error clearing dynamic Client Variables.

2001-12-10 Thread Angel Stewart
Hey all, I figured out how to do this, and whew! It wasn't easy. And it doesn't make sense to me..but it works. CFSET CurrentDate= #StartDate# cfloop CONDITION=#CurrentDate# LTE #EndDate# CFIF IsDefined(Client.Comment_#Evaluate(#DateFormat(CurrentDate,'mmdd') #)#)

RE: Client Variables in a database

2001-12-08 Thread Ken Wilson
Variables in a database Hi all. I am having a bit of trouble getting rid of client variables stored in the datatsource. The problem seems to be that the client variables are not let go of until I close the browser. I have tried both the deleteclientvariable(myvar) method and the DELETE FROM

Re: Client Variables in a database

2001-12-08 Thread David Schmidt
cfif IsDefined(Client.myVar) cfset temp=deleteclientvariable(Client.myVar) /cfif - Original Message - From: Ken Wilson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, December 08, 2001 5:37 AM Subject: RE: Client Variables in a database Can you post the exact code

RE: Client Variables in a database

2001-12-08 Thread Andrew Scott
Ok there is a known problem here; I have mentioned this to Macromedia when it was in Beta but it went unnoticed!! What is happening is that for some reason the Client variables are not being deleted if stored in the DB don't ask me why I haven't had the time to figure it out. The solution I use

Re: Client Variables in a database

2001-12-08 Thread Bud
On 12/8/01, David Schmidt penned: cfif IsDefined(Client.myVar) cfset temp=deleteclientvariable(Client.myVar) /cfif Try this: cfif IsDefined(Client.myVar) cfset temp=deleteclientvariable(myVar) /cfif I believe the way you have it CF will be looking for a client variable named

Client variables and slow down

2001-11-21 Thread Robert Everland
How many people out there are using client variables? I have been using them for quite a while and never really noticed how long it takes for the initial page that has the cfapplication in it to load. The first time it loads it can take a few thousand milliseconds. How many people out

RE: Client variables and slow down

2001-11-21 Thread Cameron Childress
We use client variables all over the place. Never seen this behavior. Are you storing them in the registry or in a datasource, and if in a datasource, what kind? how much data are you storing in the client scope? a lot? a little? How long are they set to live (expire) in the cfadmin

Re: Client variables and slow down

2001-11-21 Thread Bob Imperial
there are using client variables? I have been using them for quite a while and never really noticed how long it takes for the initial page that has the cfapplication in it to load. The first time it loads it can take a few thousand milliseconds. How many people out there are using client variables

RE: Client variables and slow down

2001-11-21 Thread John Quarto-vonTivadar
Access like that. The best solution is likely to have them set up as a datasource in SQL server or whatever you are using for that -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 3:22 PM To: CF-Talk Subject: Client variables

RE: Client variables and slow down

2001-11-21 Thread Robert Everland
: Cameron Childress [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 3:56 PM To: CF-Talk Subject: RE: Client variables and slow down We use client variables all over the place. Never seen this behavior. Are you storing them in the registry or in a datasource, and if in a datasource

RE: Client variables and slow down

2001-11-21 Thread Robert Everland
Extraordinaire -Original Message- From: Cameron Childress [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 3:56 PM To: CF-Talk Subject: RE: Client variables and slow down We use client variables all over the place. Never seen this behavior. Are you storing them

RE: Client variables and slow down

2001-11-21 Thread Robert Everland
Ticonderoga Web Developer Extraordinaire -Original Message- From: John Quarto-vonTivadar [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 5:06 PM To: CF-Talk Subject: RE: Client variables and slow down i use them exclusively of SESSION or APPLICATION scope. How do you have yours set

RE: Client variables and slow down

2001-11-21 Thread Cameron Childress
: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 4:03 PM To: CF-Talk Subject: RE: Client variables and slow down Also how much is your cache set to, and do you have trusted cache checked, and does anyone know exactly what this does. Does it just cache templates

RE: Client variables and slow down

2001-11-21 Thread Cameron Childress
Storing in a database, SQL 7, not much data, this is the first page you go to, so there are no variables stored there yet, and it is set to expire in 10 days. It isn't slow once it is cached, but the very first time you go there it is horrible. Hmmm... I wouldn't think it's your client

RE: Client variables and slow down

2001-11-21 Thread Bryan Love
Crisis -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 12:22 PM To: CF-Talk Subject: Client variables and slow down How many people out there are using client variables? I have been using them for quite a while and never really

RE: Session and Client Variables

2001-11-16 Thread Daye, Marianne
. The reason I spoke of hidden variables was that when using client variables, I stored the wddx in a hidden field rather than in a database. Also, before I got involved in the second appilication, it had been designed without session management, and hidden fields were used to pass data for each selected

Re: Session and Client Variables

2001-11-16 Thread Gyrus
I hope Gyrus will be ready for his exam, now. Learning by the minute :) - Gyrus ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

RE: Session and Client Variables

2001-11-15 Thread Mike Townend
Theres a setting in CF Admin that will 'purge' unused client variables which I believe is set by default to 90 days, this value can be changed with the minimum setting of 1 day... So its more of a clean up database/registry space rather than timing out a session HTH -Original Message

RE: Session and Client Variables

2001-11-15 Thread Daye, Marianne
Variables Yikes! The key differences between client and session variables are: session variables must be locked, or have automatic locking set. client variables can be stored in a database, allowing much better scalability with your apps. client variables can only store simple datatypes. And yes

RE: Session and Client Variables

2001-11-15 Thread Bill King
ALSO: Client variables are the only way to go when you are in a clustered environment. Client variables are stored in a central database and can be accessed from multiple machines, while a session variable would be lost if a shared server architecture controls the user traffic on multiple

Re: Session and Client Variables

2001-11-15 Thread Kwang Suh
of hidden form fields and time consuming database calls. Why would I need hidden form fields and database calls when I'm using client variables? Your friend in CF Programming, Marianne Daye -Original Message- From: Kwang Suh [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 14

Re: Session and Client Variables

2001-11-15 Thread Freddy
committed evil act in the name of session variables, but don't let hypocrites turn you away from the tool that delivered you from the hands of hidden form fields and time consuming database calls. Why would I need hidden form fields and database calls when I'm using client variables? Take

Re: Session and Client Variables

2001-11-15 Thread Kwang Suh
- Original Message - From: Freddy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 15, 2001 5:16 PM Subject: Re: Session and Client Variables Kwang Suh wrote: My heart goes out to you! You sound like you've had a bad experience with a session variable

Re: Session and Client Variables

2001-11-15 Thread Freddy
Let me see. A scalable app that uses session vaiables? Try an application that delivers personalized content. Store a cookie that logs the user in on entry to the site. It then retrieves a list of links, images, and pertinent user info that is stored in session variables. If the user moves to a

Re: Session and Client Variables

2001-11-15 Thread Gyrus
I think the overarching requirement for most, if not all, enterprise-class applications are reliability and availability. I can't see how using session vars meshes with this requirement. Hey, if all someone's making are small apps, go right ahead and use session variables. Just don't

Re: Session and Client Variables

2001-11-15 Thread Kwang Suh
tricks, a lot of that stuff can be removed. And client variables can't directly store complex vars, so there might be some rewrite there. You also need to tell your application to use client vars. - Gyrus ~~ Get the mailserver that powers

Re: Session and Client Variables

2001-11-15 Thread Kwang Suh
--- Freddy [EMAIL PROTECTED] wrote: Let me see. A scalable app that uses session vaiables? Try an application that delivers personalized content. Store a cookie that logs the user in on entry to the site. It then retrieves a list of links, images, and pertinent user info that is stored in

Session and Client Variables

2001-11-14 Thread John Barleycorn
Hi Folks, i'm prepping for the cf exam and i'm lacking a good understanding of the difference between client and session variables. It seems that they both are capable of doing the same thing. When and why should/would i use one or the other? What apps have you used client vars for and not

Re: Session and Client Variables

2001-11-14 Thread Gyrus
for and not session vars for and visa versa and why? Thanks for any help. As I understand it, the key difference is that session variables timeout. Client variables are tied to a specific client, session variables are tied to a specific client *and last for a specific period of time after the last request from

RE: Session and Client Variables

2001-11-14 Thread Mike Townend
AFAIK Sessions are for one server only so if you have cluster servers a different server cannot access the session details of another server... However with Client variables (turned off the default location of the registry to a database such as SQL Server) you can store these in a central

Re: Session and Client Variables

2001-11-14 Thread Kinley Pon
sounds about right! - Kinley From: Gyrus [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: Session and Client Variables Date: Wed, 14 Nov 2001 18:26:41 - Hi Folks, i'm prepping for the cf exam and i'm lacking a good understanding of the difference

RE: Session and Client Variables

2001-11-14 Thread Kwang Suh
Yikes! The key differences between client and session variables are: session variables must be locked, or have automatic locking set. client variables can be stored in a database, allowing much better scalability with your apps. client variables can only store simple datatypes. And yes, client

Re: Session and Client Variables

2001-11-14 Thread Gyrus
And yes, client variables DO time out. What's the timeout period? I wasn't aware of this, would be nice to know for when I do use them. Bottom line: session variables suck. I hate them. They are the bane of CF. I hate how people put gigantic structures in session variables and then use

RE: Session and Client Variables

2001-11-14 Thread Darryl Lyons
, 15 November 2001 12:47 PM To: CF-Talk Subject: Re: Session and Client Variables And yes, client variables DO time out. What's the timeout period? I wasn't aware of this, would be nice to know for when I do use them. Bottom line: session variables suck. I hate them. They are the bane of CF

Client variables

2001-08-27 Thread Janine Jakim
I have my pages set up with client variables. I need to change my main client variable. When I change my queries/cfsets to the new variable it doesn't work. Do I need to make the change somewhere else to? What I have done thus far: Query for login Cfset New CLIENT variable Go to new page Query

client variables jumble?

2001-08-15 Thread Akbar Pasha
i have a typical and very random problem. we have a site which uses client variables and have a login-authentication system. difeerent ppl login all the time. but sometimes, out of no where when someone logs in he see's a screen which belongs to someone else. all the data of other person

Re: client variables jumble?

2001-08-15 Thread Brook Davies
Try settings your temporary files/Internet Options to check every time and see if that helps. We had a similar problem where the client variables did not seem to be accurate. We determined that this setting was a factor. We ended up appending some random characters to the end of our urls so

RE: client variables jumble?

2001-08-15 Thread Akbar Pasha
well we have asked the users to do so. but it occurs a couple of times in a month. i havent tried the random characters appending to URL's. but is it just bcoz of the client variables?? or cache?? any one have any other info?? ::akbar -Original Message- From: Brook Davies [mailto

Client Variables Storage Woes

2001-08-08 Thread Leon Oosterwijk
All, Our Cold fusion 5 server has been experiencing significant problems with our client variables storage. We used a SQL Server datasource to store our Client Variables. Before we took our database offline we changed the administrator setting to store the client variables in the registry

RE: Client Variables Storage Woes

2001-08-08 Thread Cameron Childress
Random server crashes and no errors in the log files. I was finally able to reinstate the client variables data source. this has resolved the problem Yes, because you were storing client variables in the registry. NEVER EVER do this. On a production machine. for now. This does however

RE: Client Variables Storage Woes

2001-08-08 Thread Bryan Love
: Leon Oosterwijk [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 08, 2001 9:52 AM To: CF-Talk Subject: Client Variables Storage Woes All, Our Cold fusion 5 server has been experiencing significant problems with our client variables storage. We used a SQL Server datasource to store our Client

RE: Client Variables Storage Woes

2001-08-08 Thread Leon Oosterwijk
Bryan, I failed to mention the fact that this runs on a linux system. I understand the fragility of the registry no matter what platform however. My discussion was merely to highlight the erradic problems that Cold Fusion seems to experience when removing the access to the client variables

<    1   2   3   4   5   6   7   >