Re: cfcookie overwrite

2014-04-02 Thread John M Bliss
SOLVED: cfcookie name="myname" expires="never" preservecase="true" value="myvalue" On Wed, Apr 2, 2014 at 4:48 PM, John M Bliss wrote: > I am attempting to use cfcookie to overwrite a cookie set by a 3rd-party > JS lib. The cookie I'm

cfcookie overwrite

2014-04-02 Thread John M Bliss
I am attempting to use cfcookie to overwrite a cookie set by a 3rd-party JS lib. The cookie I'm trying to overwrite has domain: www.mysite.com ...so I'm doing: cfcookie name="myname" domain="www.mysite.com" expires="never" path="/" preservecas

Re: CFCOOKIE mystery -- mixed case cookies returning as lowercase?

2012-12-06 Thread Byron Mann
If code and the environment hasn't changed, then it would maybe point to the client side of things. Any commonlaity to browsers? Maybe a particular recent release of a browser has a bug that is causing this. ~| Order the Adobe

Re: CFCOOKIE mystery -- mixed case cookies returning as lowercase?

2012-12-06 Thread Tony Green
Yes, my tracing code shows the client hitting the "cookie set" page, and having the cookie set with all caps.Then on the next page the entire CGI.HTTP_COOKIE is being seen by the server as being lower case. HTTP_COOKIE: "cfid=296838408; cftoken=af55396400; thecookie=abcdefg" Note the str

Re: CFCOOKIE mystery -- mixed case cookies returning as lowercase?

2012-12-05 Thread Byron Mann
PM, "Tony Green" wrote: > > Hi CFTALK - > > I have a really weird mystery that Im trying to solve.I have an app > that has run fine for about 5 years. All of a sudden, about a week ago, > I'm starting to get cookies created by my own CFCOOKIE returning from &

CFCOOKIE mystery -- mixed case cookies returning as lowercase?

2012-12-05 Thread Tony Green
Hi CFTALK - I have a really weird mystery that Im trying to solve.I have an app that has run fine for about 5 years. All of a sudden, about a week ago, I'm starting to get cookies created by my own CFCOOKIE returning from random clients all in lower case. For example. Template A

CF8 cfcookie vs cfheader set-cookie

2010-11-22 Thread Jawad Shaik Mohammed
I was updating our application to support httponly cookies and came across what seems like a ColdFusion quirk. I had to update a bunch of pages where we used to set cookies using cfcookie tag, so I went ahead and created a custom tag that all templates can use to set a cookie. Since CF8&#

Re: CFCOOKIE and IE 7&8 and Privacy

2010-02-18 Thread br...@electricedgesystems.com br...@electricedgesystems.com
Thanks again Dave! > > and I suppose I should have said that I have used cookies, but > have been dealing with government clients that are stuck on IE > > 6 where there is no "privacy" settings that govern cookie acceptance > ;-) > > OK, that makes a lot more sense. > > > So it looks like

Re: CFCOOKIE and IE 7&8 and Privacy

2010-02-18 Thread Dave Watts
> and I suppose I should have said that I have used cookies, but have been > dealing with government clients that are stuck on IE > 6 where there is no "privacy" settings that govern cookie acceptance ;-) OK, that makes a lot more sense. > So it looks like the solution is not a CF one (i.e.

Re: CFCOOKIE and IE 7&8 and Privacy

2010-02-18 Thread br...@electricedgesystems.com br...@electricedgesystems.com
Thanks Dave, and I suppose I should have said that I have used cookies, but have been dealing with government clients that are stuck on IE 6 where there is no "privacy" settings that govern cookie acceptance ;-) So it looks like the solution is not a CF one (i.e. there isn't an attribute I

Re: CFCOOKIE and IE 7&8 and Privacy

2010-02-17 Thread Dave Watts
ith the addition of the > "Privacy" tab under Internet Options for cookie prefs. > > It seems the IE default level is medium-high which allows cookies I set > via CFCOOKIE to be set.  If I crank the setting up to High, the cookies > will not be set. > > I have no idea w

Re: CFCOOKIE and IE 7&8 and Privacy

2010-02-17 Thread Dave Watts
ith the addition of the > "Privacy" tab under Internet Options for cookie prefs. > > It seems the IE default level is medium-high which allows cookies I set > via CFCOOKIE to be set.  If I crank the setting up to High, the cookies > will not be set. > > I have no idea w

CFCOOKIE and IE 7&8 and Privacy

2010-02-17 Thread Bryan Stevenson
m-high which allows cookies I set via CFCOOKIE to be set. If I crank the setting up to High, the cookies will not be set. I have no idea why, but I'd bet someone on list has dealt with this in the past 4-5 years ;-) Thanks in advance for any insight (or even better a way to set the cookie

Re: cfcookie tempermental setting: Long Post

2008-10-02 Thread Phillip Perry
I apologize for the incomplete code before. Here is the code with the form.remember stuff in it with some comments added in. The welcome screen "index.cfm" is as follows: Welcome, your logged in as #cookie.username# ID: #cookie.ID# Welcome, your logged in as #session.Auth.username# ID #session.

Re: cfcookie tempermental setting: Long Post

2008-10-02 Thread Tom Chiverton
On Thursday 02 Oct 2008, Phillip Perry wrote: > with , that is when all goes down This doesn't appear in your example code. > Welcome, you are logged in as #session.Auth.username# ID: #session.Auth.ID# You are not creating these in your example code. And, as side notes: cfqueryparam all your qu

cfcookie tempermental setting: Long Post

2008-10-01 Thread Phillip Perry
Hello, Following is as detailed a description as i can give as to my problem: Problem: I am making a sign in form that will allow my customers access to a private page populated with information specifically targeted toward them and their account info. Within this form I have a set of 3 cookies t

Re: CFCookie trouble

2008-09-28 Thread Azadi Saryev
for one thing, you are setting one cookie, but checking for another... there are more peculiar things in your code, but let's start with this. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Phillip Perry wrote: > Hi, > > I'm trying to make a simple cookie for testing but its not working

CFCookie trouble

2008-09-28 Thread Phillip Perry
Hi, I'm trying to make a simple cookie for testing but its not working out. I use it for log in verification. The problem is the cookie gets stored but the redirect is not happening. I use the code below. The second redirect is the problem. Instead of going to newindex.cfm its loading the loginf

Re: cfcookie expires default

2008-09-16 Thread Charlie Griefer
it's been fixed for a couple of versions. as of 6.1 (maybe 6.0) :) On Tue, Sep 16, 2008 at 4:00 PM, Phillip M. Vector < [EMAIL PROTECTED]> wrote: > Back in CF5 (and 6 I think), if you did a cflocation on the same page as > the cfcookie, the cookie didn't take. Are yo

Re: cfcookie expires default

2008-09-16 Thread Phillip M. Vector
Back in CF5 (and 6 I think), if you did a cflocation on the same page as the cfcookie, the cookie didn't take. Are you doing it? If so, try removing the cflocation and see what happens. I suspect they fixed the bug in CF8, but perhaps not. Ioannis Papanikolaou wrote: > Philip, &g

Re: cfcookie expires default

2008-09-16 Thread Ioannis Papanikolaou
hello Nathan, It is not a browser issue or that I am reseting the cookie on the page load. The cookie it self is not not taking the corect Expires parameter. If I check on the cookie manager on firefox I have "at end of session" This has been tested on opera chrome and firefox. Philip, I am not

Re: cfcookie expires default

2008-09-16 Thread Phillip M. Vector
Is the "No cookies before a cflocation" bug still there in CF8? Nathan Strutz wrote: > Check to make sure you're not deleting it when you log out of your > application, if you log out. Also, check to make sure you're not recreating > it or changing the value anywhere, such as with a cfset or in ja

Re: cfcookie expires default

2008-09-16 Thread Nathan Strutz
Check to make sure you're not deleting it when you log out of your application, if you log out. Also, check to make sure you're not recreating it or changing the value anywhere, such as with a cfset or in javascript, as both of these can change it to the default session based timeout. Otherwise, t

cfcookie expires default

2008-09-16 Thread Ioannis Papanikolaou
Hello every one. coldfusion 8 I am using this to setup my cookie problem is that the cookie expires at the end of session and when I restart the browser is not there any nore. This means that it is taking the default parameter. Any ideas ? Thanx Ioannis ~~

RE: cfcookie not accepting domain argument?

2008-06-07 Thread Dave Watts
> Then any ideas how I can have 1 site > that you log into and all my other > sites (on the same server) can tell that > person is logged in? Are session numbers > consistent? Application? If you use URL tokens instead of cookies to identify sessions, this should be fairly easy. Alternatively

Re: cfcookie not accepting domain argument?

2008-06-07 Thread Phillip M. Vector
res = "Never" >> domain=".MetaverseLARP.com"> >> >> When I run that code on another site, >> then go to MetaverseLARP.com, it >> doesn't accept the cookie. It's like it >> doesn't exist. >> >> Doesn't domain allow

RE: cfcookie not accepting domain argument?

2008-06-07 Thread Dave Watts
domain allow for servers to share > cookies? What am I missing here? The DOMAIN attribute of CFCOOKIE lets you set cookies that can be sent to any other server in the same domain; by default, cookies are host-specific. It doesn't let you set cookies for one domain from another domain. Coo

cfcookie not accepting domain argument?

2008-06-07 Thread Phillip M. Vector
When I run that code on another site, then go to MetaverseLARP.com, it doesn't accept the cookie. It's like it doesn't exist. Doesn't domain allow for servers to share cookies? What am I missing here? ~| Adobe® ColdFusion® 8 s

RE: Where is cfcookie stored?

2008-05-28 Thread Robert Harrison
ay 28, 2008 12:22 PM To: CF-Talk Subject: RE: Where is cfcookie stored? > Hmmm So if a cfcookie is used for a shopping cart id, and > the user's browser crashes, they lose their shopping cart? > However if I use the expires attribute, it's written to disk > immediately an

RE: Where is cfcookie stored?

2008-05-28 Thread Dave Watts
> Hmmm So if a cfcookie is used for a shopping cart id, and > the user's browser crashes, they lose their shopping cart? > However if I use the expires attribute, it's written to disk > immediately and thus preventing that scenario? Yes to both questions. However,

RE: Where is cfcookie stored?

2008-05-28 Thread Robert Harrison
For which browser? Cookies are stored by browser. Robert B. Harrison Director of Interactive services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 T : 631.231.6600 Ext. 119 F : 631.434.7022 www.austin-williams.com Great advertising can't be either/or... It must be &.

Re: Where is cfcookie stored?

2008-05-28 Thread Richard Steele
>> I've looked in C:\Documents and Settings\Administrator\Local >> Settings\Temporary Internet Files, however I can't find the >> file where the cookie stored. Please advise. Thanks! > >Unless you specified an EXPIRES attribute, CFCOOKIE creates a session c

RE: Where is cfcookie stored?

2008-05-26 Thread Dave Watts
> I've looked in C:\Documents and Settings\Administrator\Local > Settings\Temporary Internet Files, however I can't find the > file where the cookie stored. Please advise. Thanks! Unless you specified an EXPIRES attribute, CFCOOKIE creates a session cookie which isn'

Re: Where is cfcookie stored?

2008-05-26 Thread Barney Boisvert
If you just want to view the contents of your cookies, the web developer toolbar for Firefox has a cookie browser. There are similar tools for IE, though I can't recall any names as it's been years since I've used them. cheers, barneyb On Mon, May 26, 2008 at 4:42 PM, Richard Steele <[EMAIL PROT

Re: Where is cfcookie stored?

2008-05-26 Thread Mike Chabot
It might be stored in RAM until the browser is closed, at which point a persistent cookie would be written to the disk. -Mike Chabot On Mon, May 26, 2008 at 7:42 PM, Richard Steele <[EMAIL PROTECTED]> wrote: > I've looked in C:\Documents and Settings\Administrator\Local > Settings\Temporary Inte

Where is cfcookie stored?

2008-05-26 Thread Richard Steele
I've looked in C:\Documents and Settings\Administrator\Local Settings\Temporary Internet Files, however I can't find the file where the cookie stored. Please advise. Thanks! ~| Adobe® ColdFusion® 8 software 8 is the most import

RE: CFCOOKIE - how to handle, subdoman and domain authentication

2008-01-30 Thread William Seiter
I haven't tried this yet, but in reviewing the docs on this tag I wonder... "Domain in which cookie is valid and to which cookie content can be sent from the user's system. By default, the cookie is only available to the server that set it. Use this attribute to make the cookie available to other

Re: CFCOOKIE - how to handle, subdoman and domain authentication

2008-01-30 Thread Roger B.
> They use the same login system, I just need it to be > specific to the main domain or a unique subdomain. Nate: To get the effect you're after, I'd suggest automatically pushing people from domain.com to www.domain.com and setting the cookie from there. -- Roger Benningfield ~~

RE: CFCOOKIE - how to handle, subdoman and domain authentication

2008-01-30 Thread Dave Watts
> Thanks for the reply. Could you provide an example by what > you mean by different name? > They use the same login system, I just need it to be specific > to the main domain or a unique subdomain. There's no way to make a cookie specific to a domain, but not to the hosts or subdomains wit

RE: CFCOOKIE - how to handle, subdoman and domain authentication

2008-01-30 Thread Nate Willard
in (domain.com) > it does not > > carry over to the subdm.domain.com > > > > I'm running into issues now that are causing > conflicts > > between the two cookies and breaking the sites. > > > > I have the following settings > > domain.com >

RE: CFCOOKIE - how to handle, subdoman and domain authentication

2008-01-30 Thread Dave Watts
; carry over to the subdm.domain.com > > I'm running into issues now that are causing conflicts > between the two cookies and breaking the sites. > > I have the following settings > domain.com > CFCOOKIE domain value = .domain.com > > subdm.domain.com > CFCOOKIE

CFCOOKIE - how to handle, subdoman and domain authentication

2008-01-30 Thread Nate Willard
er to the subdm.domain.com I'm running into issues now that are causing conflicts between the two cookies and breaking the sites. I have the following settings domain.com CFCOOKIE domain value = .domain.com subdm.domain.com CFCOOKIE domain value = . subdm.domain.com Does anyone know why this

Re: Do not set blank cookies with cfcookie

2007-06-06 Thread Will Tomlinson
>Wow, that's an old technote. I like the coding style: > > >Do something >Do something else > >ALL CAPS coldfusion tags... unnecessary use of # signs... Hmm... that looks kinda like dave's code. ~| Upgrade to Adobe ColdFusion

Re: Do not set blank cookies with cfcookie

2007-06-06 Thread Will Tomlinson
>Wow, that's an old technote. I like the coding style: > > >Do something >Do something else > >ALL CAPS coldfusion tags... unnecessary use of # signs... Hmm... that looks kinda like dave's code. ~| Upgrade to Adobe ColdFusion

Re: Do not set blank cookies with cfcookie

2007-06-06 Thread Ravi Gehlot
Hey Rick, Any clues of why I keep getting those errors? Ravi. Rick Root wrote: > On 6/6/07, Jay Greer <[EMAIL PROTECTED]> wrote: > >> Anyone know if this technote applies to ColdFusion 7 and later..? >> >> http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_17009 >> > > While

Re: Do not set blank cookies with cfcookie

2007-06-06 Thread Rick Root
On 6/6/07, Jay Greer <[EMAIL PROTECTED]> wrote: > Anyone know if this technote applies to ColdFusion 7 and later..? > > http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_17009 While I can't answer your question... Wow, that's an old technote. I like the coding style: Do something Do s

Do not set blank cookies with cfcookie

2007-06-06 Thread Jay Greer
Anyone know if this technote applies to ColdFusion 7 and later..? http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_17009 ~| ColdFusion MX7 by Adobe® Dyncamically transform webcontent into Adobe PDF with new ColdFusion

RE: CFCookie 2 domains

2007-01-26 Thread Dave Watts
> I'm setting a cookie with cfcookie on www.domain.com. I want > the cookie to be available to fun.domain.com. So after > reading the docs, and it doesn't work, I came up with > > expires="#CreateTimeSpan(0, 0, 20, 0)#" name="SAVE_RECIPE&quo

CFCookie 2 domains

2007-01-26 Thread coldfusion . developer
All, I'm setting a cookie with cfcookie on www.domain.com. I want the cookie to be available to fun.domain.com. So after reading the docs, and it doesn't work, I came up with Any help wouold be

RE: CFcookie...am I not using it correctly?

2006-09-01 Thread Andy Matthews
Damn... I would say that it was 3am when I did that yesterday, but I can't even use that excuse. Thanks Jim. -Original Message- From: Jim [mailto:[EMAIL PROTECTED] Sent: Friday, September 01, 2006 8:29 AM To: CF-Talk Subject: Re: CFcookie...am I not using it correctly? Put

Re: CFcookie...am I not using it correctly?

2006-09-01 Thread Jim
Put your cfcookie after the flash. Else it will always be 1 when you get to the flash. fo.addVariable("previousvisitor", "#COOKIE.previousvisitor#"); Andy Matthews wrote: > There's a flash video on the front page of my company website. The boss >

CFcookie...am I not using it correctly?

2006-09-01 Thread Andy Matthews
There's a flash video on the front page of my company website. The boss wants it to play straight off the first time you visit, then go to a still frame with a play button the second (and any time afterwards). So I thought to myself, cfcookie would be a great idea. I've got this code

RE: CFCOOKIE: Using a number of days for EXPIRES, at what time would that cookie expire?

2006-07-17 Thread Eric Roberts
10:16 To: CF-Talk Subject: CFCOOKIE: Using a number of days for EXPIRES, at what time would that cookie expire? I'm creating a cookie that needs to expire at midnight of the day the cookie is set (i.e. the cookie would never be more than 24 hours old). If I were to set the cookie with the foll

CFCOOKIE: Using a number of days for EXPIRES, at what time would that cookie expire?

2006-07-17 Thread Pete Ruckelshaus
I'm creating a cookie that needs to expire at midnight of the day the cookie is set (i.e. the cookie would never be more than 24 hours old). If I were to set the cookie with the following code: Would that do the trick? Thanks Pete ~~~

RE: cfcookie

2005-08-04 Thread Dave Watts
> > As of CFMX, this is no longer correct. You can use CFCOOKIE > > and CFLOCATION within the same page. > > I am using CFMX6.1, so why might this not be working then? Within your original code, you are setting the cookie twice - once to delete it, and again to give

RE: cfcookie

2005-08-04 Thread Dave Francis
expires= ? This is a guess, I have no idea what the expires default value is. -Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Thursday, August 04, 2005 1:57 PM To: CF-Talk Subject: Re: cfcookie >As of CFMX, this is no longer correct. You can

Re: cfcookie

2005-08-04 Thread daniel kessler
>As of CFMX, this is no longer correct. You can use CFCOOKIE and CFLOCATION >within the same page. I am using CFMX6.1, so why might this not be working then? ~| Find out how CFTicket can increase your company's custo

RE: cfcookie

2005-08-04 Thread Dave Francis
What version of CF? For CF5.0 (and below), cfcookie's won't be set if you exit the page with cflocation -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: Thursday, August 04, 2005 10:36 AM To: CF-Talk Subject: cfcookie I am using cookies to define whethe

Re: cfcookie

2005-08-04 Thread daniel kessler
maybe it keeps the header info because I use the whole url rather than a relative one? The time that I do a relative url, it seems to work but I don't know if that's a pattern. >From what I can remember, and it has been a while since I have used >CFcookie but since CFlocati

Re: cfcookie

2005-08-04 Thread J.J. Merrick
it has been a while since I have used > >>CFcookie but since CFlocation does a header push to the browser that the >>cookie doesn't get set if cfcookie is used prior to a cflocation. >> >>I would suggest using session or client variables which set a cookie >&

RE: cfcookie

2005-08-04 Thread Dave Watts
hand I cannot remember - sure someone > will chip in ;-) As of CFMX, this is no longer correct. You can use CFCOOKIE and CFLOCATION within the same page. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction a

RE: cfcookie

2005-08-04 Thread Dave Francis
I put a url variable on the cflocation, then set the cookie in the target page if the url var is present. Ugh! but it works. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Thursday, August 04, 2005 10:33 AM To: CF-Talk Subject: RE: cfcookie I believe

RE: cfcookie

2005-08-04 Thread Robertson-Ravo, Neil (RX)
04 August 2005 15:36 To: CF-Talk Subject: cfcookie I am using cookies to define whether a person is logged in. - no cookie - set return url - link to login page click to go to the login, log in and it does: but when it returns to that url, the original code still fails and seems to think t

Re: cfcookie

2005-08-04 Thread daniel kessler
be? >From what I can remember, and it has been a while since I have used >CFcookie but since CFlocation does a header push to the browser that the >cookie doesn't get set if cfcookie is used prior to a cflocation. > >I would suggest using session or client variables which set a

Re: cfcookie

2005-08-04 Thread J.J. Merrick
From what I can remember, and it has been a while since I have used CFcookie but since CFlocation does a header push to the browser that the cookie doesn't get set if cfcookie is used prior to a cflocation. I would suggest using session or client variables which set a cookie anyways to

cfcookie

2005-08-04 Thread Daniel Kessler
I am using cookies to define whether a person is logged in. - no cookie - set return url - link to login page click to go to the login, log in and it does: but when it returns to that url, the original code still fails and seems to think that you're not logged in. Oddly, if the return url

RE: Why wont this cfcookie set?

2005-01-18 Thread Dave Watts
> So when you try that you don't see the content of the > "cookie" in either instance? No, if I set a cookie I'll see it on the page that creates it (as a result of that little CFMX change I mentioned) and on subsequent pages if I let the browser accept it. Dave Watts, CTO, Fig Leaf Software htt

Re: Why wont this cfcookie set?

2005-01-18 Thread Bryan Stevenson
Good point Dave... Always a good idea (if you use cookies) is to have a built in cookie detection routine (however you want to do it) into Application.cfm so those paranoid folks out there with cookies turned off get the good old "Your cookies are disbaled...if you want to use the site turm 'em

RE: Why wont this cfcookie set?

2005-01-18 Thread Michael T. Tangorre
sure that the browser has accepted the cookie until the > browser requests another page, in which case there'll be an > HTTP request header containing the cookie. > > However, in CFMX when you set a cookie using the CFCOOKIE > tag, the cookie will be available within that page as

RE: Why wont this cfcookie set?

2005-01-18 Thread Dave Watts
dd, actually, and really needs a bit of explanation. When you set a cookie within a page, CF adds a Set-Cookie header to the HTTP response containing that page. You cannot be sure that the browser has accepted the cookie until the browser requests another page, in which case there'll be an HTTP req

RE: Why wont this cfcookie set?

2005-01-18 Thread Ewok
there on the second page leads me to believe that it was completely set on the first page without proceeding to another page. -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 18, 2005 10:58 AM To: CF-Talk Subject: Re: Why wont this cfcookie set?

RE: Why wont this cfcookie set?

2005-01-18 Thread Dave Watts
> Are you using cflocation on the same page? > > http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_17023 > > Maybe the cookie is not being set Just as a heads-up, this is no longer an issue with CFMX, which will let you use CFCOOKIE and CFLOCATION within the same

Re: Why wont this cfcookie set?

2005-01-18 Thread Howie Hamlin
cedgesystems.com > - Original Message - > From: "Howie Hamlin" <[EMAIL PROTECTED]> > To: "CF-Talk" > Sent: Tuesday, January 18, 2005 7:44 AM > Subject: Re: Why wont this cfcookie set? > ~~~

Re: Why wont this cfcookie set?

2005-01-18 Thread Phill B
STUPID! STUPID! STUPID! Got to love the simple things that hang you up. Thanks. On Tue, 18 Jan 2005 07:46:19 -0800, Bryan Stevenson <[EMAIL PROTECTED]> wrote: > CFCOOKIE adds the COOKIE scope by itself > > So you have actually set cookie.cookie.dealerName ;-) >

Re: Why wont this cfcookie set?

2005-01-18 Thread Phill B
I've tried setting it and viewing it on the same page and subsequent pages but it wont work. :-\ On Tue, 18 Jan 2005 10:44:51 -0500, Howie Hamlin <[EMAIL PROTECTED]> wrote: > When you set a cookie it is available on subsequent pages from the page on > which you set it (if the browser has cookies

RE: Why wont this cfcookie set?

2005-01-18 Thread RADEMAKERS Tanguy
because "cookie." is the scope, not part of the cookie name. try this: #cookie.dealerName# /t >-Original Message- >From: Phill B [mailto:[EMAIL PROTECTED] >Sent: Tuesday, January 18, 2005 4:42 PM >To: CF-Talk >Subject: Why wont this cfcookie set?

Re: Why wont this cfcookie set?

2005-01-18 Thread Bryan Stevenson
2 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com - Original Message - From: "Howie Hamlin" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Tuesday, January 18, 2005 7:44 AM Subject: Re: Why wont this cfcookie set? > When you

RE: Why wont this cfcookie set?

2005-01-18 Thread COLLIE David
Are you using cflocation on the same page? http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_17023 Maybe the cookie is not being set -- dc ~| Logware: a new and convenient web-based time tracking application. Sta

Re: Why wont this cfcookie set?

2005-01-18 Thread Bryan Stevenson
CFCOOKIE adds the COOKIE scope by itself So you have actually set cookie.cookie.dealerName ;-) HTH Cheers Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED]

Re: Why wont this cfcookie set?

2005-01-18 Thread Howie Hamlin
When you set a cookie it is available on subsequent pages from the page on which you set it (if the browser has cookies enabled). HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Se

Why wont this cfcookie set?

2005-01-18 Thread Phill B
I have this in my page. #cookie.dealerName# Then when I try to output the cookie value I get an undefined in cookie error. Am I missing some thing here? -- Phillip B. ~| Find out how CFTicket can increase your comp

Re: cfcookie

2004-09-08 Thread Jim McAtee
- Original Message - From: "Dave Watts" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, September 08, 2004 12:57 PM Subject: RE: cfcookie >> So then you can _read_ cookies from other domains, but you >> can't writ

RE: cfcookie

2004-09-08 Thread Dave Watts
> So then you can _read_ cookies from other domains, but you > can't write them? No, you can't read or write them. The browser will only return cookies on subsequent requests to the domain from which they were sent. The third-party approach bypasses this by having pages on different domains conta

Re: cfcookie

2004-09-08 Thread Andrew Dixon
No. Cookies are domain specific, otherwise this would cause a hugh security hole in the browser. Andrew. - Original Message - From: Jim McAtee <[EMAIL PROTECTED]> Date: Wed, 8 Sep 2004 12:33:00 -0600 Subject: Re: cfcookie To: CF-Talk <[EMAIL PROTECTED]> - Orig

Re: cfcookie

2004-09-08 Thread Jim McAtee
- Original Message - From: "Dave Watts" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, September 08, 2004 11:49 AM Subject: RE: cfcookie >> Can a cookie be shared between domains?  That is, if I have a >> family of web

RE: cfcookie

2004-09-08 Thread Dave Watts
> Can a cookie be shared between domains?  That is, if I have a > family of web sites, can they share a given cookie? No, cookies are domain-specific. They will, by default, be shared by all hosts within a domain, though. > I want to have user polls posted on several different web > sites and

Re: cfcookie

2004-09-08 Thread Lawrence Ng
I'm just thinking out loud here but could u use the referrer to check where they came from and set your processing rules accordingly? if referrer == domain in list {       cookie is baked    } else {    start baking a cookie    } I could be wrong... >>> [EMAIL PROTECTED] 9/8/2004 10:18:07 AM >>

cfcookie

2004-09-08 Thread Jim McAtee
Can a cookie be shared between domains?  That is, if I have a family of web sites, can they share a given cookie? I want to have user polls posted on several different web sites and wish to limit visitors to one vote per poll, even if they come across the poll on a different web site in the fam

Re: cfcookie and hotmail

2004-05-31 Thread Bryan Stevenson
Macromedia Associate Partner www.macromedia.com - Vancouver Island ColdFusion Users Group Founder & Director www.cfug-vancouverisland.com   - Original Message -   From: Dave Francis   To: CF-Talk   Sent: Monday, May 31, 2004 10:02 AM   Subjec

cfcookie and hotmail

2004-05-31 Thread Dave Francis
a problem with cfcookie, or a generic browser/internet restriction, and is there anything I can do about it? TIA Dave [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: CFMX 6.1 & CFCOOKIE Question

2004-03-17 Thread Simon Stryjak
Just an update that I have solved the issue. No longer appears to function in CFMX 6.1 I had to change the format to reflect:     value = "0"     expires = "1"  secure = "no"> Where expires = "1" is 1 day rather than using the #CreateTimeSpa

CFMX 6.1 & CFCOOKIE Question

2004-03-15 Thread Simon Stryjak
Hi. I've been scratching my head and looking at the following problem: One of our sites that relies heavily on cookies was migrated from a previous version of Cold Fusion to a new server running CFMX 6.1 and the cookie functionality / tracking suddenly stopped working. On multiple machines runni

IE 6 & CFCookie

2004-02-12 Thread Dowdell, Jason G
Hi All, I have an application that sets 3 cookies using cfcookie using the following syntax The syntax is the same for all 3 cookies except for the fact that they have different names. I'm using _javascript_ to redirect the user to the members area once they pass authentication so the co

CFCookie & IE 6

2004-02-09 Thread dowdeljg
I have an application that sets 3 cookies using cfcookie using the following syntax <cfcookie name="UserID" expires="NEVER" value="#Request.CookieInfo#">   The syntax is the same for all 3 cookies except for the fact that they have different names.  I'm u

SOLVED: CFCOOKIE and Netscape 7.1

2003-11-14 Thread Bryan Stevenson
Nevermind...solved I had just installed NS 7.1 and the registration window was open the whole time but hiddenso it was keeping the cookie aliveTGIF ;-) Cheers Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTEC

CFCOOKIE and Netscape 7.1

2003-11-14 Thread Bryan Stevenson
Hey All, I'm setting non-persistent cookies like so: So with no "expires" attribute the cookie should be destroyed when the browser closes.  Well in Netscape 7.1 the cookie is persisting (i.e. close ALL browsers...re-open...cookie is still there)!! Any ideas? Thanks Bryan Stevenson B.Comm. V

RE: CFCookie Question

2003-11-12 Thread J E VanOver
A dash is not a valid name character.  I am guessing there is no way around this -- at least if you continue to use CFCOOKIE.  Yes, you can use _javascript_ to set cookies.  Any good _javascript_ resource will help you with this.   -Original Message-   From: [EMAIL PROTECTED] [EMAIL

CFCookie Question

2003-11-12 Thread dsmith
I need to set a cookie with a name of WB-Pass.  Apparantly CF 6 doesn't like the special character "-".  This works in CF5.  Does anyone know a way to use CF to set the cookie or do I need to use _javascript_ or ASP. Thanks, Daron Smith [Todays Threads] [This Message] [Subscription] [Fast

RE: cfcookie and browser back button - solution!

2003-10-06 Thread Aunger, Mitch
-Talk Subject: cfcookie and browser back button - causes page refresh - help? Hi y'all I have a new issue that has me stumped. Maybe if i talk it out, someone will know the answer. I have a CFMX include (tho the same thing probably happens in a CF5 environment tho i haven't gone bac

RE: cfcookie and browser back button - causes page refresh - help?

2003-09-22 Thread Aunger, Mitch
il: [EMAIL PROTECTED] Thanks! Mitch "still hoping for some help - please excuse the further interruption" Aunger :) -Original Message- From: Aunger, Mitch Sent: Wednesday, September 17, 2003 1:51 PM To: CF-Talk Subject: cfcookie and browser back button - causes page refresh - help?

  1   2   3   >