Re: simple question...cfmodule

2012-07-25 Thread Russ Michaels
Eric , are you saying that the 4th attribute never gets sent regardless of what it is called, or is it only if it called clientID. ~| Order the Adobe Coldfusion Anthology now!

simple question...cfmodule

2012-07-24 Thread Eric Roberts
I really don't use cfmodule much so I have a question.so I added an attribute to the list and it doesn't seem to be passing the variable to the custom tag (I don't see it in the error dump.though I see the other vars in the attribute list). Does the server need to be restarted to make that show

Re: simple question...cfmodule

2012-07-24 Thread Raymond Camden
Nope. Do you have trusted cache turned on? On Tue, Jul 24, 2012 at 3:58 PM, Eric Roberts ow...@threeravensconsulting.com wrote: I really don't use cfmodule much so I have a question.so I added an attribute to the list and it doesn't seem to be passing the variable to the custom tag (I don't

Re: simple question...cfmodule

2012-07-24 Thread Alan Rother
Hey Eric, You shouldnt need to restart - can you show us the code you're using? -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe Coldfusion Anthology now!

RE: simple question...cfmodule

2012-07-24 Thread Eric Roberts
24, 2012 4:25 PM To: cf-talk Subject: Re: simple question...cfmodule Hey Eric, You shouldnt need to restart - can you show us the code you're using? -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother

Re: simple question...cfmodule

2012-07-24 Thread Alan Rother
, 2012 4:25 PM To: cf-talk Subject: Re: simple question...cfmodule Hey Eric, You shouldnt need to restart - can you show us the code you're using? -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother

Re: simple question...cfmodule

2012-07-24 Thread .jonah
-1515 -Original Message- From: Alan Rother [mailto:alan.rot...@gmail.com] Sent: Tuesday, July 24, 2012 4:25 PM To: cf-talk Subject: Re: simple question...cfmodule Hey Eric, You shouldnt need to restart - can you show us the code you're using

RE: simple question...cfmodule

2012-07-24 Thread Eric Roberts
24, 2012 5:51 PM To: cf-talk Subject: Re: simple question...cfmodule Hmm... There's nothing particularly weird about your tag... Are you literally doing cfdump var=#attributes# and not seeing the value? Also, what version of CF, is there a closing cfmodule tag and are you using any isolation

Simple question

2010-10-07 Thread Dan Baughman
Hi All, What is the easiest way in coldfusion to touch a file. IE. updates it's modified time to be now. I can think of a few hacks, but was looking for something super easy and graceful. Dan ~| Order the Adobe Coldfusion

Re: Simple question

2010-10-07 Thread John M Bliss
cffile action=write file=c:\temp\temp.txt output= On Thu, Oct 7, 2010 at 2:05 PM, Dan Baughman dan.baugh...@gmail.com wrote: Hi All, What is the easiest way in coldfusion to touch a file. IE. updates it's modified time to be now. I can think of a few hacks, but was looking for something

Re: Simple question

2010-10-07 Thread Dan Baughman
So if you set the output to blank it doesn't over write the contents of the file? On Thu, Oct 7, 2010 at 1:13 PM, John M Bliss bliss.j...@gmail.com wrote: cffile action=write file=c:\temp\temp.txt output= On Thu, Oct 7, 2010 at 2:05 PM, Dan Baughman dan.baugh...@gmail.com wrote: Hi

Re: Simple question

2010-10-07 Thread Leigh
FileSetLastModified() ? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive:

Re: Simple question

2010-10-07 Thread Charlie Griefer
If it does, you can try cffile action=append file=c:\temp\temp.txt output= / On Thu, Oct 7, 2010 at 12:29 PM, Dan Baughman dan.baugh...@gmail.comwrote: So if you set the output to blank it doesn't over write the contents of the file? On Thu, Oct 7, 2010 at 1:13 PM, John M Bliss

Re: Simple question

2010-10-07 Thread Wil Genovese
fileSetModified() http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-6ce1.html Wil Genovese One man with courage makes a majority. -Andrew Jackson A fine is a tax for doing wrong. A tax is a fine for doing well. On Oct 7, 2010, at 2:29 PM, Dan Baughman

Re: Simple question

2010-10-07 Thread Dan Baughman
Thanks, all. Nice to see the built in function. On Thu, Oct 7, 2010 at 1:32 PM, Wil Genovese jugg...@trunkful.com wrote: fileSetModified() http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-6ce1.html Wil Genovese One man with courage makes a

RE: Another simple question...

2003-12-10 Thread Dave Watts
So you don't give out valid record IDs from your database every piece of the puzzle a hacker can get their hands on is bad ;-) I don't think this is really necessary to protect. Knowing a surrogate primary key for a specific record isn't a significant or useful piece of information, and

RE: Another simple question...

2003-12-10 Thread d.a.collie
Dave Watts wrote: I don't think this is really necessary to protect. Knowing a surrogate primary key for a specific record isn't a significant or useful piece of information, and from the attacker's perspective, # whatever URL parameter or form field gets a specific record is functionally

RE: Another simple question...

2003-12-10 Thread Raymond Camden
I've been mulling this over in my head for a while Is the preferred method of guarding against this sort of thing to create a UUID with every record and do a check of that when allowing db actions against the record? Any better (ie easier or less time consuming) methods to this?

RE: Another simple question...

2003-12-10 Thread d.a.collie
I've been mulling this over in my head for a while Is the preferred method of guarding against this sort of thing to create a UUID with every record and do a check of that when allowing db actions against the record? Any better (ie easier or less time consuming) methods to this? I

RE: Another simple question...

2003-12-10 Thread Dave Watts
I've been mulling this over in my head for a while Is the preferred method of guarding against this sort of thing to create a UUID with every record and do a check of that when allowing db actions against the record? Any better (ie easier or less time consuming) methods to this?

RE: Another simple question...

2003-12-10 Thread Raymond Camden
I don't think there is any preferred method outside of just making sure to apply you logic rules. For example: A press release will show up online if active=1 and pubdate today. Any SQL that gets PRs, wether it gets one PR or a list, should all obey the same rule. Ooops, I think

RE: Another simple question...

2003-12-10 Thread d.a.collie
I'm not sure what you're trying to accomplish, exactly. What I am thinking is that the person has authorisation, but has a list of available (say) articles he can delete... If the PK is used, then with a bit of URL manipulation he could prob delete a record that he didn't have access to see...

Re: Another simple question...

2003-12-10 Thread Jochem van Dieten
[EMAIL PROTECTED] wrote: Would it be preferable to have the check before every database action Yes. or would the above be sufficient security Obscurity is not the same as or a replacement for security. Jochem -- When you don't want to be surprised by the revolution organize one

RE: Another simple question...

2003-12-10 Thread d.a.collie
Would it be preferable to have the check before every database action Yes. or would the above be sufficient security Obscurity is not the same as or a replacement for security. Cheers guys...message understood:-) -- dc [Todays Threads] [This Message] [Subscription] [Fast

RE: Another simple question...

2003-12-10 Thread Dave Watts
What I am thinking is that the person has authorisation, but has a list of available (say) articles he can delete... If the PK is used, then with a bit of URL manipulation he could prob delete a record that he didn't have access to see... I realise you should do the check before delete,

Another simple question...

2003-12-09 Thread Che Vilnonis
This is for a CF5 webserver. I have the following URL. http://somesite.com/cnt_ask_an_expert_detail.cfm?id=114 Basically, I would like to have some simple encryption on the URL.ID variable. Nothing fancy...just something that the average website user would not try to manipulate. The solution

RE: Another simple question...

2003-12-09 Thread DURETTE, STEVEN J (AIT)
Che, What about encrypt(id, someKey) and decrypt(id, someKey) CF Functions.Just as an example someKey = 1234567890. Steve -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 3:56 PM To: CF-Talk Subject: Another simple question

RE: Another simple question...

2003-12-09 Thread Raymond Camden
But even if you encrypt it, someone can still change it. If your logic correctly handles missing and bad ID values, what is the point of encrypting it? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Another simple question...

2003-12-09 Thread Barney Boisvert
, 2003 12:56 PM To: CF-Talk Subject: Another simple question... This is for a CF5 webserver. I have the following URL. http://somesite.com/cnt_ask_an_expert_detail.cfm?id=114 Basically, I would like to have some simple encryption on the URL.ID variable. Nothing fancy...just something

RE: Another simple question...

2003-12-09 Thread Che Vilnonis
:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 4:06 PM To: CF-Talk Subject: RE: Another simple question... Che, What about encrypt(id, someKey) and decrypt(id, someKey) CF Functions. Just as an example someKey = 1234567890. Steve -Original Message- From: Che Vilnonis [mailto:[EMAIL

RE: Another simple question...

2003-12-09 Thread Che Vilnonis
: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 4:08 PM To: CF-Talk Subject: RE: Another simple question... But even if you encrypt it, someone can still change it. If your logic correctly handles missing and bad ID values, what is the point of encrypting it? [Todays

RE: Another simple question...

2003-12-09 Thread Barney Boisvert
, as there will be gaps in the series.It doesn't make the app any simpler, but it does accomplish something. barneyb -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 1:08 PM To: CF-Talk Subject: RE: Another simple question... But even if you encrypt

Re: Another simple question...

2003-12-09 Thread Bryan Stevenson
-vancouverisland.com - Original Message - From: Che Vilnonis To: CF-Talk Sent: Tuesday, December 09, 2003 12:56 PM Subject: Another simple question... This is for a CF5 webserver. I have the following URL. http://somesite.com/cnt_ask_an_expert_detail.cfm?id=114 Basically, I would like to have some simple

Re: Another simple question...

2003-12-09 Thread Bryan Stevenson
question... Che, What about encrypt(id, someKey) and decrypt(id, someKey) CF Functions.Just as an example someKey = 1234567890. Steve -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 3:56 PM To: CF-Talk Subject: Another simple question

Re: Another simple question...

2003-12-09 Thread Bryan Stevenson
, December 09, 2003 1:08 PM Subject: RE: Another simple question... But even if you encrypt it, someone can still change it. If your logic correctly handles missing and bad ID values, what is the point of encrypting it? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: Another simple question...

2003-12-09 Thread Che Vilnonis
can you do UUID in CF5? how do you decrypt it? -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 4:24 PM To: CF-Talk Subject: RE: Another simple question... If the ID is 114, chances are good that 115 is going to be valid, and possible do

RE: Another simple question...

2003-12-09 Thread Raymond Camden
Err, as I said before, even _if_ you encrypt it, the user can mess with it. The point is this - Your code should handle: A missing ID A bad ID (like id=apple) An ID that doesn't make sense (id=-1) An ID that points to a non existent record (id=109) And add to that any other

RE: Another simple question...

2003-12-09 Thread Raymond Camden
I agree with that, but it should be made clear that encrypting only slows people down. Also, I see WAY too many web sites that don't properly check their input parameters. That is FAR more important I would say. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: Another simple question...

2003-12-09 Thread Raymond Camden
-Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 1:08 PM To: CF-Talk Subject: RE: Another simple question... But even if you encrypt it, someone can still change it. If your logic correctly handles missing and bad ID

Re: Another simple question...

2003-12-09 Thread Bryan Stevenson
: Another simple question... Err, as I said before, even _if_ you encrypt it, the user can mess with it. The point is this - Your code should handle: A missing ID A bad ID (like id=apple) An ID that doesn't make sense (id=-1) An ID that points to a non existent record (id=109) And add

RE: Another simple question...

2003-12-09 Thread Barney Boisvert
INSERT statement. -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 1:38 PM To: CF-Talk Subject: RE: Another simple question... can you do UUID in CF5? how do you decrypt it? -Original Message- From: Barney Boisvert [mailto:[EMAIL

Re: Another simple question...

2003-12-09 Thread Bryan Stevenson
- Vancouver Island ColdFusion Users Group Founder Director www.cfug-vancouverisland.com - Original Message - From: Raymond Camden To: CF-Talk Sent: Tuesday, December 09, 2003 1:43 PM Subject: RE: Another simple question... Assume that 115 is a valid

RE: Another simple question...

2003-12-09 Thread Che Vilnonis
: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 4:47 PM To: CF-Talk Subject: Re: Another simple question... absolutelybut the point of encrypting IDs is to keep bad users from seeing/manipulating data they shouldn't see. YOu should always try and handle all potential

Re: Another simple question...

2003-12-09 Thread Bryan Stevenson
- Vancouver Island ColdFusion Users Group Founder Director www.cfug-vancouverisland.com - Original Message - From: Che Vilnonis To: CF-Talk Sent: Tuesday, December 09, 2003 2:00 PM Subject: RE: Another simple question... man, you guys

RE: Another simple question...

2003-12-09 Thread Che Vilnonis
-Talk Subject: Re: Another simple question... ;-)Yep...definately the right tool for the job then in your case.I'd say let 'em screw with the URL and show 'em an error page when they do ;-) So the cf_cfypt tag bombs eh?so far I haven't seen a problembut then again sometimes this tag gets confused

Re: Another simple question...

2003-12-09 Thread Bryan Stevenson
: Another simple question... uh-oh...just looked at my code. i have cf_cryp. is that a bad custom tag if so, Bryan, could you send me a link for your recommeded custom tag, cf_crypt? thanks, che -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Tuesday, December

RE: Another simple question...

2003-12-09 Thread Che Vilnonis
thanks...I'll be awaiting it. -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 5:14 PM To: CF-Talk Subject: Re: Another simple question... yep...that's the one I had some problems with as well...I'll fire ya the proper tag offlist

Simple question...

2003-12-08 Thread Che Vilnonis
In CF5, how would I write: IF there is any variable in the URL scope present... then cfdump the entire URL scope. I know you can use isdefined(FORM.FIELDNAMES) for form vars... but what is the magic phrase for all url vars??? Thanks, Che [Todays Threads] [This Message] [Subscription]

Re: Simple question...

2003-12-08 Thread Bryan Stevenson
www.macromedia.com - Vancouver Island ColdFusion Users Group Founder Director www.cfug-vancouverisland.com - Original Message - From: Che Vilnonis To: CF-Talk Sent: Monday, December 08, 2003 1:11 PM Subject: Simple question... In CF5, how

Re: Simple question...

2003-12-08 Thread Phillip B.
You should be able to use cfdump var=#url# If anything is there it will dump it. If not then nothing gets output. -- Phillip B. Che Vilnonis wrote: In CF5, how would I write: IF there is any variable in the URL scope present... then cfdump the entire URL scope. I know you can use

RE: Simple question...

2003-12-08 Thread Venable, John
cfif len(trim(cgi.query_string)) cfdump var=#url# /cfif I think that's it. John Venable -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 4:12 PM To: CF-Talk Subject: Simple question... In CF5, how would I write: IF there is any

RE: Simple question...

2003-12-08 Thread Che Vilnonis
that is what I thought...thanks for re-asssuring me, -Original Message- From: Phillip B. [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 4:21 PM To: CF-Talk Subject: Re: Simple question... You should be able to use cfdump var=#url# If anything is there it will dump

Re: Simple question...

2003-12-08 Thread Bryan Stevenson
Director www.cfug-vancouverisland.com - Original Message - From: Venable, John To: CF-Talk Sent: Monday, December 08, 2003 1:22 PM Subject: RE: Simple question... cfif len(trim(cgi.query_string)) cfdump var=#url# /cfif I think that's it. John Venable -Original Message- From

RE: Simple question...

2003-12-08 Thread Venable, John
That's true, but he's using cfdump, not sure he wanted to use them at all :-) John -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 4:38 PM To: CF-Talk Subject: Re: Simple question... Beware dumping the URL scope...rememberyou may

Simple question...

2003-09-18 Thread Che Vilnonis
Regardless of an IP address's size (i.e. 10.1.2.3 or 204.225.123.234), what would be the easiest wat to get the first three banks of numbers? I'm trying to avoid a bunch of ListGetAt statements and then building a variable from them on the fly. Would SpanExcluding/SpanIncluding do the trick? Che

RE: Simple question...

2003-09-18 Thread Cantrell, Adam
How about listDeleteAt? listDeleteAt(ipAddress, 4 , .) -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Thursday, September 18, 2003 10:30 AM To: CF-Talk Subject: Simple question... Regardless of an IP address's size (i.e. 10.1.2.3 or 204.225.123.234

RE: Simple question...

2003-09-18 Thread d.a.collie
Reverse the list then use ListRest(reveresedList) -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: 18 September 2003 16:30 To: CF-Talk Subject: Simple question... Regardless of an IP address's size (i.e. 10.1.2.3 or 204.225.123.234), what would be the easiest wat

RE: Simple question...

2003-09-18 Thread Che Vilnonis
thank you...such as simple answer...don't ya hate when you can't see the obvious? -Original Message- From: Cantrell, Adam [mailto:[EMAIL PROTECTED] Sent: Thursday, September 18, 2003 11:56 AM To: CF-Talk Subject: RE: Simple question... How about listDeleteAt? listDeleteAt(ipAddress, 4

Re: Simple question...

2003-09-18 Thread Marlon Moyer
Or listtoArray(ipaddress,.) Cantrell, Adam wrote: How about listDeleteAt? listDeleteAt(ipAddress, 4 , .) -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Thursday, September 18, 2003 10:30 AM To: CF-Talk Subject: Simple question... Regardless of an IP

Simple question .... QueryOfQuery

2002-05-03 Thread Allan Pichler
As this is the first I need to use query of query I have run into a small problem ... I have a query that I built from a text file that holds n email addresses ... Just that one column. In a database I have a partial list of those email addresses Now my problem is this Is it

Re: Simple question .... QueryOfQuery

2002-05-03 Thread Justin Scott
Now my problem is this Is it possible to query the full list for the email addresses that are not in the database ??? The easiest way I can think of off the top of my head... cfquery name=results dbtype=query select email from qFullList where address not in (qPartialList.address)

Re: Simple question .... QueryOfQuery

2002-05-03 Thread Justin Scott
cfquery name=results dbtype=query select email from qFullList where address not in (qPartialList.address) /cfquery The where address should read where email .. sorry for any confusion. -Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com

RE: Simple question .... QueryOfQuery

2002-05-03 Thread Allan Pichler
- From: Justin Scott [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 11:42 AM To: CF-Talk Subject: Re: Simple question QueryOfQuery cfquery name=results dbtype=query select email from qFullList where address not in (qPartialList.address) /cfquery The where address should read

Re: Simple question .... QueryOfQuery

2002-05-03 Thread Justin Scott
But I think I need to find a workaround in a typical case of this page the original list holds 30-90.000 addresses and the partial list contains 0-90.000 addresses . needless to say that this query takes forever... If speed is an issue, I would suggest using something other

Re: Simple question .... QueryOfQuery

2002-05-03 Thread Stephen Moretti
Thanks for you input Justin, But I think I need to find a workaround in a typical case of this page the original list holds 30-90.000 addresses and the partial list contains 0-90.000 addresses . needless to say that this query takes forever... Hmmm... With that number of

RE: Simple question .... QueryOfQuery

2002-05-03 Thread Allan Pichler
Think I'll try to process the txt files against the statistic table in Perl. Thanks for the input! @llan -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 12:27 PM To: CF-Talk Subject: Re: Simple question QueryOfQuery Thanks for you input

RE: Simple question .... QueryOfQuery

2002-05-03 Thread Jeff Beer
-the-scenes task the stored procedure should be fine. -Original Message- From: Justin Scott [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 5:59 AM To: CF-Talk Subject: Re: Simple question QueryOfQuery But I think I need to find a workaround in a typical case of this page

RE: Simple question .... QueryOfQuery

2002-05-03 Thread Allan Pichler
I need it to run on-the-fly to create a new .dat file for the mail system. OT: anyone have a list comparing algorithm for Perl ?? :) @llan -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 1:11 PM To: CF-Talk Subject: RE: Simple question

Re: Simple question .... QueryOfQuery

2002-05-03 Thread Stephen Moretti
I Think I'll try to process the txt files against the statistic table in Perl. Sicko ;o) Thanks for the input! No worries... Stephen __ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Simple question .... QueryOfQuery

2002-05-03 Thread Allan Pichler
the input! @llan -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 1:28 PM To: CF-Talk Subject: Re: Simple question QueryOfQuery I Think I'll try to process the txt files against the statistic table in Perl. Sicko ;o) Thanks

Re: simple question - how do you manually time out a session variable

2002-02-15 Thread Nathan Chen
Steve, I got it. It works. Thank you so much. Nathan - Original Message - From: Steve Oliver [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, February 14, 2002 11:55 PM Subject: RE: simple question - how do you manually time out a session variable Well, do you have

simple question - how do you manually time out a session variable

2002-02-14 Thread Nathan Chen
Hi,All: I know you can set time out for a session variable by changing the default value in CF administration, but can you time out a session variable manually? For example, if the user clicks a button called logout, then the next page sets the session expire or time out. Nathan

Re: simple question - how do you manually time out a session variable

2002-02-14 Thread Paul Giesenhagen
If you are wanting the session to END, just cfset session.sessionname = (Wrap it in cflock EXCLUSIVE) Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector - Commerce Builder Hi,All: I know you can set time out for a session variable by changing the default value in CF

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
Subject: simple question - how do you manually time out a session variable Hi,All: I know you can set time out for a session variable by changing the default value in CF administration, but can you time out a session variable manually? For example, if the user clicks a button called logout

Re: simple question - how do you manually time out a session variable

2002-02-14 Thread Nathan Chen
Thank you, Paul and Steve, for your help. - Original Message - From: Paul Giesenhagen [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, February 14, 2002 9:31 PM Subject: Re: simple question - how do you manually time out a session variable If you are wanting

Re: simple question - how do you manually time out a session variable

2002-02-14 Thread Paul Giesenhagen
, February 14, 2002 10:48 PM Subject: Re: simple question - how do you manually time out a session variable Thank you, Paul and Steve, for your help. - Original Message - From: Paul Giesenhagen [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, February 14, 2002 9:31 PM

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
solutions, inc. http://www.atnetsolutions.com -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 14, 2002 11:51 PM To: CF-Talk Subject: Re: simple question - how do you manually time out a session variable Steve's dumps the session totally and my

Re: simple question - how do you manually time out a session variable

2002-02-14 Thread Paul Giesenhagen
, February 14, 2002 11:15 PM Subject: RE: simple question - how do you manually time out a session variable Why keep the session if there's nothing in it :) Dropping the session will log them out. If he's tracking loggedin status by isDefined(SESSION.loggedin), he'd have to go through and add

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
-Talk Subject: Re: simple question - how do you manually time out a session variable I agree ... (didn't actually disagree) .. cfif #session.loggedin# Is does about the same thing and IsDefined... I just happen to be working with sessions at that time, and that is one w ay I was clearing it out

Re: simple question - how do you manually time out a session variable

2002-02-14 Thread Paul Giesenhagen
Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector - Commerce Builder - Original Message - From: Paul Giesenhagen [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, February 14, 2002 11:20 PM Subject: Re: simple question - how do you manually time out a session variable

Re: simple question - how do you manually time out a session variable

2002-02-14 Thread Paul Giesenhagen
, February 14, 2002 11:25 PM Subject: RE: simple question - how do you manually time out a session variable Sorry, I seem to be in an arguing mood tonight. (must be the lack of sleep) __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message

Re: simple question - how do you manually time out a session variable

2002-02-14 Thread Nathan Chen
. Can someone give me a pointer on how to disable the Back button? Thans a lot. Nathan - Original Message - From: Steve Oliver [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, February 14, 2002 10:15 PM Subject: RE: simple question - how do you manually time out a session

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
I answer that question that just popped up :) __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]] Sent: Friday, February 15, 2002 12:29 AM To: CF-Talk Subject: Re: simple question

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
location.href = 'index.cfm'; /script __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Nathan Chen [mailto:[EMAIL PROTECTED]] Sent: Friday, February 15, 2002 12:58 AM To: CF-Talk Subject: Re: simple question - how do

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
:58 AM To: CF-Talk Subject: Re: simple question - how do you manually time out a session variable I guess, after solving the killing session issue, my next problem is how to prevent or stop users from clicking the Back button in the browser and getting back to the system after they logout. I know

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
:[EMAIL PROTECTED]] Sent: Friday, February 15, 2002 12:58 AM To: CF-Talk Subject: Re: simple question - how do you manually time out a session variable I guess, after solving the killing session issue, my next problem is how to prevent or stop users from clicking the Back button in the browser

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
The only way I can think of is to include something like: window.history.forward(20); Disregard that, I went looking around and found that IE only supports -1, 0, or 1 in the history function. __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com

Re: simple question - how do you manually time out a session variable

2002-02-14 Thread Nathan Chen
, February 14, 2002 11:43 PM Subject: RE: simple question - how do you manually time out a session variable The only way I can think of is to include something like: window.history.forward(20); Disregard that, I went looking around and found that IE only supports -1, 0, or 1 in the history function

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
if needed, since your not using a cflocation __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Nathan Chen [mailto:[EMAIL PROTECTED]] Sent: Friday, February 15, 2002 1:50 AM To: CF-Talk Subject: Re: simple question - how do you

Simple question

2001-04-23 Thread C. Hatton Humphrey
I'm trying to talk my network admin into setting up a test box to look into the feasibility of upgrading to 5.0 when it comes out. He's a bit leery about upgrading since the problem we ran into last week when we finally upgraded to 4.5.1 from 4.0 (there is better definition of what an integer is

RE: Simple question

2001-04-23 Thread Dylan Bromby
email allaire at [EMAIL PROTECTED] and ask to be part of the beta program. worth asking. -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED]] Sent: Monday, April 23, 2001 6:11 AM To: CF-Talk Subject: Simple question I'm trying to talk my network admin into setting up

Simple question?

2001-04-02 Thread CF Crazy
1. Is there a tag or some code that would read all the tables and fields in a data source. To permit the user to run their own queries of the data source? (without knowledge of CF) 2. How do I create a data source or edit an existing one without having to be on the server? ie add fields or whole

Re: Simple question?

2001-04-02 Thread CF Crazy
Where can I download it? At 12:44 PM 4/2/2001 -0400, you wrote: Question 1. Yes, I have a tag that does adhoc queries. It can show them in the browser or write the query to a text file. Question 2. I have seperate apps that cn create DSNs without being on the machine and a web based SQL

Re: CFincludes and SQL Queries -SIMPLE QUESTION! (update to last q)

2000-11-19 Thread Michael She
inside the cfinclude file??? From: Michael She [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: CFincludes and SQL Queries -SIMPLE QUESTION! (update to last q) Date: Fri, 17 Nov 2000 08:30:03 -0500 If I embed a SQL query inside a CFQUERY my variables

RE: CFincludes and SQL Queries -SIMPLE QUESTION! (update to last q)

2000-11-19 Thread Paul Mone
Name the include file something along the lines of "qryUserDupeCheck.cfm" -Original Message- From: Michael She [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 19, 2000 6:46 AM To: CF-Talk Subject: Re: CFincludes and SQL Queries -SIMPLE QUESTION! (update to last q) Personal

Re: CFincludes and SQL Queries -SIMPLE QUESTION! (update to last q)

2000-11-18 Thread Michael Thomas
Sorry as I havent been reading into this topic of the list, With that in mind why cant you just put the entire query inside the cfinclude file??? From: Michael She [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: CFincludes and SQL Queries -SIMPLE QUESTION

CFincludes and SQL Queries -SIMPLE QUESTION!

2000-11-17 Thread Michael She
If I embed a SQL query inside a CFQUERY my variables don't get processed: cfquery name="UserDupeCheck" datasource="#Application.Datasource#" dbtype="ODBC" cfinclude template="/Includes/SQL/Registration/SelectUserDupeCheck.cfm" /cfquery The query is: Select Username From Users

RE: CFincludes and SQL Queries -SIMPLE QUESTION!

2000-11-17 Thread Simon Horwith
Software 1400 16th St NW, # 220 Washington DC 20036 202.797.6570 (direct line) www.figleaf.com -Original Message- From: Michael She [mailto:[EMAIL PROTECTED]] Sent: Friday, November 17, 2000 8:28 AM To: CF-Talk Subject: CFincludes and SQL Queries -SIMPLE QUESTION! If I embed a SQL

RE: CFincludes and SQL Queries -SIMPLE QUESTION!

2000-11-17 Thread Neil Clark
They wont as far as I am aware. Probably to do with the precedence of processing- i.e you are calling up a CFQUERY which is being processed - which is fine, but you are asking it to process a FORM.variable which is related to the document calling the include. try this : cfset form.username =

RE: CFincludes and SQL Queries -SIMPLE QUESTION!

2000-11-17 Thread Paul Mone
You can always put the cfquery tags in the inlcude file as well. -Original Message- From: Michael She [mailto:[EMAIL PROTECTED]] Sent: Friday, November 17, 2000 5:28 AM To: CF-Talk Subject: CFincludes and SQL Queries -SIMPLE QUESTION! If I embed a SQL query inside a CFQUERY my

  1   2   >