Re: Comprehensive article on how CFID and CFTOKEN work?

2009-01-12 Thread Tyson Vanek
the seed value for CFID was stored and could be altered or reset. These days, I'm not sure off the top of my head if that still exists. Hope that helps. -Tyson -- Tyson Vanek Principal Consultant Webapper Services, LLC http://www.webapper.com

Re: Comprehensive article on how CFID and CFTOKEN work?

2009-01-12 Thread Tyson Vanek
the seed value for CFID was stored and could be altered or reset. These days, I'm not sure off the top of my head if that still exists. Hope that helps. -Tyson -- Tyson Vanek Principal Consultant Webapper Services, LLC http://www.webapper.com

RE: Listcontains question

2001-09-19 Thread Tyson Vanek
Try using the listFind() function instead. -Tyson -Original Message- From: van Wyk, Carlo [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 19, 2001 4:28 AM To: CF-Talk Subject: Listcontains question Hi I have the following piece of code that checks to see if a user can see a

RE: CF eating up RAM

2001-09-18 Thread Tyson Vanek
Make sure you're locking all your shared-scope variables. Writing code without properly locking on shared-scope variables can cause serious memory leaks in ColdFusion. If you're not familiar with this practice, I would suggest reading the following two articles. ColdFusion Locking Best

RE: Duplicate and StructCopy

2001-09-13 Thread Tyson Vanek
An interesting scenario that should be considered. Given the following code example: 01: cfscript 02: arrTest1 = arrayNew(1); 03: 04: arrTest1[1] = foo1; 05: arrTest1[2] = foo2; 06: arrTest1[3] = foo3; 07: arrTest1[4] =

RE: E-Commerce...? Duane Boudreau FIRED by client

2001-09-13 Thread Tyson Vanek
No doubt. People whine about someone posting a JRun-related question to this list but will let this childish slamming go on here instead? Geesh. -Original Message- From: Kurt Ward [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 10:06 AM To: CF-Talk Subject: RE:

RE: Duplicate and StructCopy

2001-09-13 Thread Tyson Vanek
Thanks for that, Ray. :) Actually, I only threw that in because I run CF5, but figured many people on the list might run CF4. Good catch, nonetheless. -Tyson -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 12:55 PM To: CF-Talk

RE: Terrorist and gas shortage

2001-09-12 Thread Tyson Vanek
I agree. Not that I am apathetic to what has taken place, but this it NOT the place to discuss these issues. PLEASE take these topics and messages elsewhere. Another mailing list could easily be created and joined by those that are interested in having these discussions and voicing opinions.

RE: CFLOCK and Session variables

2001-09-10 Thread Tyson Vanek
What version of ColdFusion are you running, Brian? The SCOPE attribute of the CFLOCK tag was not introduced until (group, correct me if I'm wrong here) ColdFusion version 4.5. If you're running a version earlier than this, you'll need to use named locks instead of scoped locks. You can find

RE: Checking for NULL

2001-09-06 Thread Tyson Vanek
Try this: cfif not len(trim(qQuery.strField)) it's null cfelse it's not null /cfif -Tyson -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 05, 2001 9:48 AM To: CF-Talk Subject: Checking for NULL How do I compare a field

RE: Off topic posts was (OT?) TomCat vs JRun

2001-09-05 Thread Tyson Vanek
It's a question about another Allaire (I STILL can't mutter the word Macromedia) product, so how far off topic is it, really? He marked his post as off-topic. I would recommend that if you can't stand off-topic posts (even though it's not that far off topic), perhaps you should build a filter

RE: Off topic posts was (OT?) TomCat vs JRun

2001-09-05 Thread Tyson Vanek
Where else (aside from a JRun mailing list, of course) would you expect to find more knowledge about JRun than in the community of people built around it's flagship relative - ColdFusion? Not to mention the fact that many on-topic threads eventually deteriorate into off-topic post discussions.

OT? Macromedia Spectra

2001-08-31 Thread Tyson Vanek
So I'm wondering now what the official situation with Spectra is? My company is currently talking about designing a content management tool to use for our clients. The more and more we talk about it, the more and more I'm reminded of Spectra. I'd hate to re-invent the wheel at this point. I

RE: fieldnames structure

2001-08-31 Thread Tyson Vanek
Deana, You're close. The FORM scope itself is actually just one big structure, which means you can copy it and pass it along. You'll likely, however, need to convert it to something that can be passed in the form hidden field - I'd recommend WDDX. Try something like this. !--- copy the form

RE: negative numbers

2001-08-31 Thread Tyson Vanek
cfset intFoo = -3 cfif isNumeric(intFoo) and intFoo lte 0 the value is 0 or a negative number /cfif -Tyson -Original Message- From: Joshua Tipton [mailto:[EMAIL PROTECTED]] Sent: Friday, August 31, 2001 5:07 PM To: CF-Talk Subject: negative numbers I want to check to see if

RE: IIF and DE

2001-08-30 Thread Tyson Vanek
. -Brent -Original Message- From: Tyson Vanek [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 5:57 PM To: CF-Talk Subject: RE: IIF and DE This goes back to the way the old CFIF used to behave. In the past (I think up until CF ver 4.5), the same problem existed with CFIF

RE: Encrypt and Decrypt function

2001-08-30 Thread Tyson Vanek
Chris, Take a look at some of the past messages in this thread. There was a whole discussion on this a few days ago. A few people proposed potential solutions to the issue you're describing. In my own opinion, this is a problem with the encrypt() function (here we go again, Ray... :)), but

RE: IIF and DE

2001-08-30 Thread Tyson Vanek
to. -Original Message- From: Tyson Vanek [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 30, 2001 10:31 AM To: CF-Talk Subject: RE: IIF and DE Not exactly. IIF() creates an IF/ELSE scenario which, technically speaking, could be considered two statements even though only one of them actually

RE: shopping cart / online store

2001-08-29 Thread Tyson Vanek
Actually, the argument here goes both ways. On one hand, you could code all your queries into stored procedures. In this manner, database operations typically end up performing faster than they would with inline ColdFusion cfquery statements. However, if you want to port your ColdFusion code

RE: IIF and DE

2001-08-29 Thread Tyson Vanek
This goes back to the way the old CFIF used to behave. In the past (I think up until CF ver 4.5), the same problem existed with CFIF. Here's an example. Say that the parameter strFoo doesn't exist, consider the following code: cfif isDefined(strFoo) and len(trim(strFoo)) ... blah blah

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-28 Thread Tyson Vanek
Technicalities aside, I totally agree with your general point here, Ray. Anyone who uses undocumented features of an application, ColdFusion or otherwise, runs the risk of finding themselves in a bind when future revisions and releases are made with the potential of changing or eliminating those

OT: test (please ignore)

2001-08-27 Thread Tyson Vanek
Testing to see if I am able to post to the list. Couldn't last week. Please ignore. -Tyson ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

RE: CF Max Memory usage?

2001-08-27 Thread Tyson Vanek
That's not adjustable with ColdFusion. You can control how much memory it will allow cached templates to be stored in, but you cannot tune the overall memory footprint of ColdFusion Server. -Tyson -Original Message- From: Jerre Hale [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27,

RE: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Tyson Vanek
. Unfortunately, the release of ColdFusion 5.0 apparently has not corrected this problem either. Hope this helps, Tyson Tyson Vanek, Technical Lead duoDesign, The eBusiness Architects Building your business online 847.491.3000 main | [EMAIL PROTECTED

RE: which web server do you use for CF?

2001-08-24 Thread Tyson Vanek
Personally, I've been using Apache on my development environments. It's small, it's quick and it's fast. Certainly not as robust as some of the other web servers out of the box, but it's sufficient for development purposes. -Tyson -Original Message- From: John Quarto-vonTivadar

RE: How can I merge the results of two queries. (tds)

2001-08-22 Thread Tyson Vanek
Why not just write a join in your query, like this: tblAuthors ID, Author, ACCNO tblBooks ACCNO, Title SELECT a.ID , a.Author , a.ACCNO , b.Title FROM tblAuthors a , tblBooks b WHERE a.ACCNO = b.ACCNO I think this is what you're looking for.

RE: Looping through lists

2001-08-22 Thread Tyson Vanek
out how to adapt this to finding ANY matching records if that's what you wanted. Hope this helps, Tyson Tyson Vanek, Technical Lead duoDesign, The eBusiness Architects Building your business online 847.491.3000 main | [EMAIL PROTECTED] 847.491.3100

RE: cfhttp Connection failure

2001-08-22 Thread Tyson Vanek
Tyson Vanek, Technical Lead duoDesign, The eBusiness Architects Building your business online 847.491.3000 main | [EMAIL PROTECTED] 847.491.3100 fax | www.duodesign.com 847.491.4270 direct | www.chicagoangels.org Come to our free 2-hour seminar The eBusiness Squeeze http

RE: Open Source Content Mananagent System

2001-08-21 Thread Tyson Vanek
It's 98% open source. There are certain files related to security function which are cfencoded. Most of these pertain to security procedures, interactions with LDAP, etc. Other than that, all of the CFML code for Spectra is open source. Additionally, there are also guidelines on how to go

RE: Search Safe String - How-To?

2001-08-21 Thread Tyson Vanek
Try using the urlEncodedFormat function. This would convert your string of... news/worldnews.cfm ... into something like this ... news%2Fworldnews%2Ecfm That would do the trick. -Tyson -Original Message- From: David Grabbe [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 21, 2001

RE: bug tracking

2001-08-21 Thread Tyson Vanek
We use QuickBase here on our projects (http://www.quickbase.com/). Not sure what the costs are, but it seems to generally meet our needs without requiring us to spend time writing our own software to do the job. :) -Tyson -Original Message- From: Kirk Boecker [mailto:[EMAIL

RE: CFHTTP inside a huge loop

2001-08-21 Thread Tyson Vanek
I smell major kludge here. Is there anything you can do in order to avoid running 1 CFHTTPs? Does this run often? Could you break it into smaller chunks? Could you load information into a database and query it instead? Yikes, Tyson -Original Message- From: J L [mailto:[EMAIL

RE: Character Code....

2001-08-20 Thread Tyson Vanek
39 You can also determine this using the following simple code in the future: cfoutput#asc(')#/cfoutput Hope this helps, Tyson -Original Message- From: Kevin Mansel [mailto:[EMAIL PROTECTED]] Sent: Monday, August 20, 2001 2:40 PM To: CF-Talk Subject: Character Code does anyone