Why does this work in one environment and not another?

2004-06-17 Thread Ian Skinner
Could not find the template cfc.profile   9 : Can somebody explain all the places CF would look for the cfc.profile template?  It finds it in one environment, but not in another? Thank You -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA "C code. C co

RE: Does this work in CF5?

2004-05-23 Thread Matt Robertson
Steve Nelson wrote: >Yep, it works fine. I did this to test it: Thanks Steve! --Matt-- [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Does this work in CF5?

2004-05-23 Thread Steve Nelson
Yep, it works fine. I did this to test it: test 1: test 2: Returns: test 1: WOO HOO   test 2: FOO Bar   WOO HOO (in cfdump tables) Steve   _   From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Sunday, May 23, 2004 10:38 AM To: CF-Talk Subject: Does this work in CF5

Does this work in CF5?

2004-05-23 Thread Matt Robertson
Sorry to ask something so dumb, but I never worked with CF5 and don't have a copy.  Will the code below work in CF5, where I have a request-scope structure and I want to use either of the two methods below to add an item to the structure? Thx, Ma

Re: Validating people who register .. how does this work?

2003-09-22 Thread Joshua Miller
We do this by sending an email with a verification link, then when the user clicks on that link, we "activate" their account (an active field in the database) and display their password as image files instead of as text. You've probably seen this before at PayPal and others that require you to

Re:Validating people who register .. how does this work?

2003-09-22 Thread lee
I'm not a big fan of sending the password to the user - you've just sent, in the clear, the two keys to the account: e-mail address and password. You can send the user an e-mail with some random number that will verify them (include as part of the URL). When the user with the correct password(i

RE: Validating people who register .. how does this work?

2003-09-22 Thread Mike Townend
ating people who register .. how does this work? I'm building a site where I'm asking people to register (free) as members. Since there's no credit card or money transaction, I still want to ensure the member is using a valid email address, so I want to do what the likes of Yahoo and

Validating people who register .. how does this work?

2003-09-22 Thread Mike Kear
I'm building a site where I'm asking people to register (free) as members. Since there's no credit card or money transaction, I still want to ensure the member is using a valid email address, so I want to do what the likes of Yahoo and others do - send an email to the user asking her to activate he

RE: How does this work (cfheader+cfcontent)?

2002-05-15 Thread Ben Johnson
hey, that's really cool. :) Thanks. Ben Johnson Hostworks, Inc. -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 3:49 PM To: CF-Talk Subject: Re: How does this work (cfheader+cfcontent)? >From a command prompt you can do:

RE: How does this work (cfheader+cfcontent)?

2002-05-15 Thread Dave Watts
> Can I use the telnet program that's on Win2000? I tried > doing "open macromedia.com", but that doesn't work. Perhaps > a different telnet client? You can use the Win2K telnet client. First, go to a command prompt, and type "telnet". Then, type "set LOCAL_ECHO", so you'll see what you're typi

Re: How does this work (cfheader+cfcontent)?

2002-05-15 Thread Howie Hamlin
Find out how iMS Stacks up to the competition: >http://www.coolfusion.com/imssecomparison.cfm - Original Message - From: "Ben Johnson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, May 15, 2002 5:45 PM Subject: RE: How does this work

RE: How does this work (cfheader+cfcontent)?

2002-05-15 Thread Ben Johnson
>>> Find out how iMS Stacks up to the competition: http://www.coolfusion.com/imssecomparison.cfm - Original Message - From: "Ben Johnson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, May 15, 2002 5:30 PM Subject: RE: How doe

Re: How does this work (cfheader+cfcontent)?

2002-05-15 Thread Howie Hamlin
mpetition: >http://www.coolfusion.com/imssecomparison.cfm - Original Message - From: "Ben Johnson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, May 15, 2002 5:30 PM Subject: RE: How does this work (cfheader+cfcontent)? > >

RE: How does this work (cfheader+cfcontent)?

2002-05-15 Thread Ben Johnson
> FYI, Coolfusion has a really cool little utility called http analyzer that > will get you all of the headers without having to telnet. How do you do that with telnet? I've never read up on it. Ben Johnson Hostworks, Inc. __

Re: How does this work (cfheader+cfcontent)?

2002-05-15 Thread Jon Hall
aving to telnet. http://www.coolfusion.com/Downloads.cfm jon - Original Message - From: "Troy Simpson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, May 15, 2002 4:58 PM Subject: How does this work (cfheader+cfcontent)? > I was t

How does this work (cfheader+cfcontent)?

2002-05-15 Thread Troy Simpson
I was trying to spit out an XML Document for IE to render for me somehow managed to get it to work. But I do not understand how. In the header, I also getting two (Content-type:...). I really just funble though this and would like to understand what is going on here. Here is the code: ---

RE: session without cookies - why/how does this work?

2002-02-25 Thread Dave Watts
> I think that when you set SETCLIENTCOOKIES="NO" that > tells the appserver not to set CFID and CFTOKEN to > persistent cookies, otherwise they are still being > passed but just as non-persistent cookies. No, I'm pretty sure that when you use SETCLIENTCOOKIES="NO" in CFAPPLICATION, no cookies

RE: session without cookies - why/how does this work?

2002-02-25 Thread Lewis Steven
ebruary 25, 2002 7:18 AM To: CF-Talk Subject: session without cookies - why/how does this work? Hello I have an Application.cfm page with the following: And two cf pages: page1.cfm page2.cfm #session.name# In the browser, I type in http://mywebserver/page1.cfm and then type in http://m

RE: session without cookies - why/how does this work?

2002-02-25 Thread Mark Smyth
same thing again hth mark Mark Smyth Developer SUeBS 00 44 1865 880800 [EMAIL PROTECTED] www.systemsunion.net -Original Message- From: Bimal Shah [mailto:[EMAIL PROTECTED]] Sent: 25 February 2002 12:18 To: CF-Talk Subject: session without cookies - why/how does this

Re: session without cookies - why/how does this work?

2002-02-25 Thread Jochem van Dieten
Bimal Shah wrote: > > Why/how does this work when I have set "setclientcookies" to > "No" and I am not passing CFID,CFTOKEN (since I am typing in > the URLS directly - no url or form variables being sent)? Setting setclientcookies to No only means they are not s

session without cookies - why/how does this work?

2002-02-25 Thread Bimal Shah
Hello I have an Application.cfm page with the following: And two cf pages: page1.cfm page2.cfm #session.name# In the browser, I type in http://mywebserver/page1.cfm and then type in http://mywebserver/page2.cfm and it displays "tom.smith". Why/how does this work when

Re: Does this work???

2001-06-28 Thread Michael Dinowitz
Very true. Problem is, the people who have to hear this aren't getting posts. :) > i.e. you can use the List ARchives to see responses to what you've posted heh heh. > > -Gel > > > -Original Message- > From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] > > Due to an impending drive failu

RE: Does this work???

2001-06-28 Thread Angél Stewart
i.e. you can use the List ARchives to see responses to what you've posted heh heh. -Gel -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Due to an impending drive failure I had to build a new box for the lists. Problem is, the DNS for it is taking a lng time to

Re: Does this work???

2001-06-28 Thread Kevin Mansel
Testing. - Original Message - From: "Michael Dinowitz" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 8:10 AM Subject: Re: Does this work??? > Due to an impending drive failure I had to build a new box for the

Re: Does this work???

2001-06-28 Thread Michael Dinowitz
, then you'll get your mail. As a side note, your able to post. It's just the receipt that's the problem. > Does this work? I have not seen messages > for over 5 days now. > > I have subscribed, unsubscribed, resubscribed..

Does this work???

2001-06-28 Thread Adkins, Randy
Does this work? I have not seen messages for over 5 days now. I have subscribed, unsubscribed, resubscribed. I am subscribed out... ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com