The culprit is actually *setclientcookies="no"*.  CF uses two variables,
CFID and CFTOKEN, to track users for client and session variable useage.  By
default, it stores these two variables automagically on the client as
cookies.  If you set "setclientcookies=no", you must manually use a method
other than cookies to pass these variables to CF (IE: Form or URL vars).

As a side note, it is unusual to actually need to use both client and
session variables in the same application.  I would review each, and select
the one best suited for your needs.

Also (almost done, I promise), I see that you are setting client storage
into the server's registry.  If you choose client vars over session vars, I
would look into storing your client info in a database rather than the
registry.

-Cameron

--------------------
Cameron Childress
ElliptIQ Inc.
p.770.460.7277.232
f.770.460.0963

> -----Original Message-----
> From: chew [mailto:[EMAIL PROTECTED]]
> Sent: Monday, November 06, 2000 6:53 AM
> To: CF-Server
> Subject: Re: session variable
>
>
> Sorry i had solved the problem for the session variable
> but i would want to know why it happen.
>
> it works when I remove some lines from the cfapplication tags
>
> previously:
> <cfapplication
>  clientmanagement="yes"
>  name="test"
>  sessionmanagement="yes"
>  setclientcookies="no"
>  clientstorage="Registry">
>
> Now:
> <cfapplication
>  name="test"
>  sessionmanagement="yes">
>
> But I don't why putting in clientstorage,clientmanagement,setclientcookies
> trigger
> such a problem.
>
> -----Original Message-----
> From: chew <[EMAIL PROTECTED]>
> To: CF-Server <[EMAIL PROTECTED]>
> Date: Monday, November 06, 2000 6:54 PM
> Subject: session variable
>
>
> >Anyone knows how session variables is clear??
> >my session variable clear itself.
> >I have set session timeout of 30 mins
> >but it clear itself in less than a min.
> >Anybody knows why.
> >
> >-----------------------------------------------------------------
> ----------
> ---
> >To unsubscribe, send a message to
> [EMAIL PROTECTED] with
> 'unsubscribe' in the body or visit the list page at www.houseoffusion.com
>
> ------------------------------------------------------------------
> ------------
> To unsubscribe, send a message to
> [EMAIL PROTECTED] with 'unsubscribe' in the
> body or visit the list page at www.houseoffusion.com

------------------------------------------------------------------------------
To unsubscribe, send a message to [EMAIL PROTECTED] with 
'unsubscribe' in the body or visit the list page at www.houseoffusion.com

Reply via email to