Re: [KCFusion] Link to article about CF tips

2000-08-05 Thread Daryl Banttari
dea. Also remember that all generalizations are false ;-) Daryl Banttari Sr. Consultant Allaire Consulting __ The KCFusion.org list and website is hosted by Humankind Systems, Inc. List Archives http://www.mail-archive.c

Fwd: RE: [KCFusion] Link to article about CF tips

2000-08-06 Thread Daryl Banttari
Date: Sun, 06 Aug 2000 18:55:41 -0500 To: "Brian Kotek" [EMAIL PROTECTED] From: Daryl Banttari [EMAIL PROTECTED] Subject: RE: [KCFusion] Link to article about CF tips Brian, It's not "users" I'm worried about. A couple of weeks ago, I was reviewing code for a site where

RE: [KCFusion] CPU Usage

2000-10-03 Thread Daryl Banttari
0/3/2000 -0500, Ramphal, Ron wrote: Daryl, Should we be also using CFLOCK around CFTRANSACTION tags, I've never been quite clear on this? Thanks, Ron. -Original Message- From: Daryl Banttari [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 03, 2000 1:11 PM To: Cold Fusion Users Subject: Re: [KCF

Re: [KCFusion] CPU Usage

2000-10-03 Thread Daryl Banttari
s well-tested.) HTH (BTW does the fact that I'm never able to make meetings now that I work for Allaire count as "irony", or is it just "coincidence"?) Daryl Banttari Allaire Consulting P.S. One of this month's Allaire DevCenter articles, "Query Caching in

Re: [KCFusion] Dynamic ORDER BY

2000-12-04 Thread Daryl Banttari
Actually, the tick quotes there should be unnecessary. What does the query look like in the debug output? Daryl - Original Message - From: "Ryan Hartwich" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, December 04, 2000 3:54 PM Subject: RE: [KCFusion] Dynamic ORDER BY Keith,

Re: [KCFusion] While were on the subject

2000-12-04 Thread Daryl Banttari
Depends. Most DBMS'es will not allow you to roll back table manipulation commands. CFTransaction is typically used to ensure that a given set of individual updates leave the database in the state where either (all updates happened) or (none of the updates happened), and is not one of the top 10

Re: [KCFusion] Help I'm threading the noose

2000-12-27 Thread Daryl Banttari
Bryan, I'd recommend replacing this loop: CFLOOP QUERY="MyDataSource" CFSET MyList = #ListAppend(MyList,MyDataSource.entry,",")# /CFLOOP with: CFSET myList = valueList(myDataSource.entry) For the original code, if you set "myDataSource" to a null string (cfset myDataSource="")

Re: [KCFusion] Credit Card Transaction Processing

2001-01-04 Thread Daryl Banttari
I've used iTransact for several sites. Useful because you never handle the credit card number, so noone can hack your server and get stored credit card numbers :-) Also, you don't have to get an SSL cert, since it's all handled by the third party. Daryl - Original Message - From:

Re: [KCFusion] Credit Card Transaction Processing

2001-01-05 Thread Daryl Banttari
Ok, I have a couple of nickels to throw at this: 1. MD5 (implemented in CF as the hash() function) is a hashing algorithm, not an encryption algorithm. With MD5, you can only "one-way encrypt" data. In other words, you can determine if you have the content that was encrypted, but you can't

Re: [KCFusion] Email Validation

2001-01-05 Thread Daryl Banttari
As far as I know, there is nothing in the pop3 spec to allow for that, so the odds of it being available via CFPOP are... really slim. Daryl - Original Message - From: "Todd A. Vandiver" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 05, 2001 11:51 AM Subject: [KCFusion]

Re: [KCFusion] CF Studio

2001-01-05 Thread Daryl Banttari
FYI: CF Studio 4.5.2 is available for download: http://allaire11.allaire.com/download/showfamily.cfm?DownloadType=UpdateFam ilyID=1953B558-7AC0-11D4-849E0010B547F60A (be sure to fix the wrapping Daryl - Original Message - From: "Bret Hedenkamp" [EMAIL PROTECTED] To: "

Re: [KCFusion] Need some advice

2001-01-08 Thread Daryl Banttari
Perhaps RegEdit needs a cr/lf after the last line? Daryl - Original Message - From: "Bryan LaPlante" [EMAIL PROTECTED] To: "[KCFusion List] (E-mail)" [EMAIL PROTECTED] Cc: "CF-Server" [EMAIL PROTECTED] Sent: Sunday, January 07, 2001 10:20 PM Subject: [KCFusion] Need some advice I am

Re: [KCFusion] meeting

2001-01-08 Thread Daryl Banttari
Sure! Can we move the meeting to Chicago? ;-) Daryl - Original Message - From: "Bryan LaPlante" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, January 08, 2001 1:12 PM Subject: Re: [KCFusion] meeting In the last couple of month I have been building applications that have

Re: [KCFusion] KCFusion project

2001-01-09 Thread Daryl Banttari
How about something we can all use? Like a project management intra/extranet where customers can track project and task status, as well as discuss tasks with the developers in a discussion forum style with automatic e-mail cc'ing I have some [working] starter code along these lines that I

RE: [KCFusion] SQL help needed - Apples but not Oranges...

2001-01-19 Thread Daryl Banttari
You might get slightly better performance by using 'AND NOT EXISTS' instead of 'AND Clients.id not in' Daryl At 02:14 PM 1/19/2001 -0600, [EMAIL PROTECTED] wrote: Oops, slight correction in the subquery... SELECT DISTINCT Clients.id, Clients.firstname, Clients.lastname FROM

Re: [KCFusion] CFLOCK usage

2001-01-30 Thread Daryl Banttari
m/handlers/index.cfm?id=17318method=full Daryl Banttari Sr. Consultant allaire consulting - Original Message - From: "Dave Gammage" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 30, 2001 12:13 AM Subject: [KCFusion] CFLOCK usage Hey all! We are designing a document

Re: [KCFusion] CFQUERY and single quotes

2001-02-01 Thread Daryl Banttari
Not sure what you're asking... select * from users where name = 'me' is valid where the name column is a text type select * from users where userID = 3 is valid where the userID column is a numeric type, and select * from eventlog where logtimestamp #createODBCDate(now())# will get today's

Re: [KCFusion] CFQUERY and single quotes

2001-02-01 Thread Daryl Banttari
Oh, wait... I think I understand your question now. You may need to use the PreserveSingleQuotes() function around the form field to prevent CF from doubling the single quotes, i.e. passing your query as such: select * from users where name = ''me'' Daryl - Original Message - From:

Re: [KCFusion] Access yes/no fields vs. SQL Server's bitfields...

2001-02-23 Thread Daryl Banttari
Heh.. an icky way is to add columns called "true" (bit, default 1) and "false" (bit, default 0) to every affected table. But I don't recommend that... Daryl At 11:31 AM 2/23/2001 -0600, [EMAIL PROTECTED] wrote: Hi Everyone, Ran into an issue this morning upon upsizing some Access code to SQL

Re: [KCFusion] License converting...

2001-02-28 Thread Daryl Banttari
Talk to Sales, I believe they can do that for a nominal fee, possibly even free. But I don't work in sales, so don't quote me :-) Daryl P.S. It seems I can no longer post as [EMAIL PROTECTED] *sigh* At 04:11 PM 2/28/2001 -0600, Dave Gammage wrote: Hey everyone!! The company I'm doing some

RE: [KCFusion] License converting...

2001-03-01 Thread Daryl Banttari
No, I think the list admins disallowed posting from non-members. Isubscribed to the list as [EMAIL PROTECTED], and tried to post as[EMAIL PROTECTED] . Not a biggie, it's just that when I want to"remind" people that I work for Allaire these days, I like to use theAllaire e-mail address. I'll

Re: [KCFusion] Changing client variable storage

2001-03-27 Thread Daryl Banttari
- Original Message - From: "Chris" [EMAIL PROTECTED] Sent: Tuesday, March 27, 2001 10:26 AM [Are] there any other tables I need to create besides cdata and cglobal? Nope, just those two. If you're using MS SQL Server, I'd recommend making the primary keys clustered. (through Manage

Re: [KCFusion] UltraDev

2001-03-29 Thread Daryl Banttari
Remember, both products are made by the same company now ;-) Daryl Banttari Macromedia Consulting [EMAIL PROTECTED] - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 29, 2001 8:38 AM Subject: RE: [KCFusion] UltraDev Did

Re: [KCFusion] FYI

2001-04-09 Thread Daryl Banttari
ped variables (but preface them with "ff".) Call me a heretic :-) BTW I registered "www.cfprimer.com" for Daryl's ColdFusion Primer. So both of you who bookmarked it, change your bookmarks ;-) Daryl Banttari Sr. Consultant Macromedia Consulting - Original Message -

[KCFusion] The Query Object: Floor Wax or Dessert Topping?

2001-04-19 Thread Daryl Banttari
I just added a new (sub)section to Daryl's ColdFusion Primer. I broke the "Fundamentals" section into two parts, and rounded out the second part, now called "Queries and SQL", with a tongue-in-cheek look at the Query object and its uses. http://www.cfprimer.com/querie

[KCFusion] CF 5.0-- test it while you can!

2001-05-03 Thread Daryl Banttari
as 4.5x faster on multiprocessor systems. Woohoo! If you haven't yet been part of the beta process, you can sign up at http://beta.allaire.com/bart/ Daryl Banttari Sr. Consultant Macromedia Consulting P.S. Some of you may remember me ranting about the beta and RC cycles for prior releases of CF

Re: [KCFusion] SQL table listing

2001-05-17 Thread Daryl Banttari
Look into the sp_tables and sp_columns stored procedures. - Original Message - From: Ryan Hartwich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 17, 2001 12:57 PM Subject: RE: [KCFusion] SQL table listing Bryan Chris, You have given us great insight into finding table

Re: [KCFusion] SQL table listing - Access

2001-05-17 Thread Daryl Banttari
http://www.google.com/search?q=sri+lanka+virus - Original Message - From: Nathan T Haley [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 17, 2001 2:13 PM Subject: RE: [KCFusion] SQL table listing - Access Hey, Does anyone know about a virus having to do with Sri Lanka?

[KCFusion] *groan*

2001-05-20 Thread Daryl Banttari
I just spent half an hour trying to figure out why an UDPATE query wouldn't run, complaining about a misplaced = sign in the SET clause. Took a break, came back... Realized there is no UDPATE command in SQL, changed it to UPDATE, and all worked fine. Sheesh Daryl

Re: [KCFusion] CF5 Eval

2001-06-06 Thread Daryl Banttari
Hmm... are you sure the time from the first page load wasn't from p-coding the pages? What does Debug output have to say about the time spent in each custom tag (as opposed to the startup, parsing, and shutdown time)? Daryl - Original Message - From: Bryan LaPlante [EMAIL PROTECTED]

Re: [KCFusion] CF5 Eval

2001-06-06 Thread Daryl Banttari
Custom tags have very little innate overhead; most of the experience I've had with custom tags running slowly involves the custom tag doing some sort of heavy lifting-- which should be minimized within CF. i.e. CF_BubbleSort isn't slow because it's a custom tag, it's slow because you're doing a

Re: [KCFusion] Uploading CSV

2001-06-11 Thread Daryl Banttari
Be VERY CAREFUL with this code, because CF "eats" multiple contiguous delimiters. ListLen("foo,bar,candy") is 3, but ListLen("foo,,candy") is *2*, and ListGetAt("foo,,candy",3) will return an error. The last time I had to work with CSV files containing null values I did this: !--- For

Re: [KCFusion] CF 5 Distribution

2001-06-13 Thread Daryl Banttari
Re: CF5 Subscription Fulfillment Actually, the shipping version is available from the web site. Subscription holders *should have* received an email with (a) temporary serial number(s), however, in many cases, it appears that the process failed-- for instance, I didn't get a subscription email

Re: [KCFusion] Meeting

2001-07-09 Thread Daryl Banttari
that sort of thing (since list functions tend to behave badly in that context.) Daryl Banttari Sr. Consultant Macromedia Consulting - Original Message - From: Bryan LaPlante [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 09, 2001 1:25 PM Subject: Re: [KCFusion] Meeting Ok

[KCFusion] Fw: Initial analysis of the .ida Code Red Worm

2001-07-19 Thread Daryl Banttari
I personally know of someone who was infected by this. If you haven't removed all non-(CF or ASP) script mappings, DO DO NOW! An ounce of prevention Daryl - Original Message - From: Marc Maiffret [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 17, 2001 1:17 PM Subject:

[KCFusion] Fw: (resend) Initial analysis of the .ida Code Red Worm

2001-07-19 Thread Daryl Banttari
I personally know of someone who was infected by this. If you haven't removed all non-(CF or ASP) script mappings, DO SO NOW! An ounce of prevention Daryl (Nothing like typing in a hurry...) - Original Message - From: Marc Maiffret [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: [KCFusion] working with local files

2001-07-20 Thread Daryl Banttari
If you're using CFEXECUTE, then you're running the VB exe on the server. By "local machine" they mean the server that's running ColdFusion. Daryl - Original Message - From: JamieTieman To: KCFusion Sent: Friday, July 20, 2001 2:10 PM Subject: [KCFusion] working with local files

Re: [KCFusion] working with local files

2001-07-20 Thread Daryl Banttari
Hmm can you find some way to have the files built on the server? Because there's no easy way to get executables to run on a client (nor should there be.) You may just need to give them step-by-step instructions on howto build the files, and then create a form to post to CFFILE

[KCFusion] Fw: Program and Source for Removal of IDA/IDQ Script Mappings (in response to Red Code Worm)

2001-07-20 Thread Daryl Banttari
FYI - Original Message - From: Critical Watch Bugtraqqer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, July 20, 2001 3:35 PM Subject: Program and Source for Removal of IDA/IDQ Script Mappings (in response to Red Code Worm) Hello everyone This is in

Re: [KCFusion] working with local files

2001-07-20 Thread Daryl Banttari
Hmm... in that case, you may want to script the uploads in your batch file via the DOS FTP command: ftp -s uploadmyfiles.ftp ...where the file "uploadmyfiles.ftp" would contain the commands needed to upload the files, e.g.: open ftp.mydomain.com user someuser pass theirpassword cd /upload

Re: [KCFusion] Win2k IIS 5 SMTP - Please Help!

2001-07-26 Thread Daryl Banttari
Make sure under relay options, you have 127.0.0.1 allowed relay access. Uh... (checking...) Under SMTP Properties, Access tab, Relay button, grant access to 127.0.0.1. Daryl - Original Message - From: Justin Hansen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 26, 2001

Re: [KCFusion] getting form variables

2001-07-27 Thread Daryl Banttari
Actually, the Form scope acts like a structure, so you can do things like structKeyList(Form) and CFLOOP Collection=#Form# Item=i The form variable #i# contains: #Form[i]# /CFLOOP etc... Daryl - Original Message - From: Don Buck [EMAIL PROTECTED] To: CF-List [EMAIL PROTECTED]

Re: [KCFusion] Apache vs IIS

2001-08-01 Thread Daryl Banttari
If you do a reasonable job of securing IIS, then there are few worries. My web server was never vulnerable to Code Red, because the first thing I did was remove all unused script mappings. The only script mapping I have left is .cfm. (This is done in WWW Master Properties, Home Directory,

Re: [KCFusion] FW: CFExecute -- more

2001-08-06 Thread Daryl Banttari
Hmm... does it stop for input? A few things to try: 1. Write it as a batch file and then use cfexecute name=cmd.exe arguments=/c myfile.bat timeout=... ... 2. Allow cfserver to interact with desktop in the services control panel; 3. Change the user cfserver is running as to a real user, not

[KCFusion] Macromedia Consulting is No More

2001-08-16 Thread Daryl Banttari
be found at http://www.windsorcs.com/resume.htm Thanks, Daryl Banttari Sr. Consultant [for now] Macromedia Consulting [while it lasts] __ The KCFusion.org list and website is hosted by Humankind Systems, Inc. List Archives

Re: [KCFusion] CFFile to Upload

2001-08-17 Thread Daryl Banttari
I believe you're looking for this: expandPath(../images/) Daryl - Original Message - From: Don Buck [EMAIL PROTECTED] To: CF-List [EMAIL PROTECTED] Sent: Friday, August 17, 2001 8:09 AM Subject: [KCFusion] CFFile to Upload I am using CFFile to upload files to my server: cfif

Re: [KCFusion] variable scoping

2001-08-17 Thread Daryl Banttari
Check out my little site: http://www.cfprimer.com/ Daryl - Original Message - From: Bakken, Kory [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 17, 2001 9:08 AM Subject: [KCFusion] variable scoping Does anybody know where I can find information regarding the different

Re: [KCFusion] Macromedia Consulting is No More

2001-08-17 Thread Daryl Banttari
copies of the original message. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Daryl Banttari Sent: Thursday, August 16, 2001 5:24 PM To: KCFusion Subject: [KCFusion] Macromedia Consulting is No More Hi everyone-- Macromedia Consulting is being dissolved

Re: [KCFusion]

2001-08-21 Thread Daryl Banttari
From: [EMAIL PROTECTED] Would Allaire be willing to share the names of their Kansas City CF customer base with kcfusion.org? Hmm... I'm not the person to talk to about that, and frankly, as a customer, I wouldn't want MM giving my name out to anyone who asked for it. Even if they asked

Re: [KCFusion] Arrays

2001-08-23 Thread Daryl Banttari
Hmm... Serialize to WDDX and stuff it in a hidden form field using htmlEditFormat()...? Daryl - Original Message - From: Don Buck [EMAIL PROTECTED] To: CF-List [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 12:32 PM Subject: [KCFusion] Arrays I'm storing stuff in an array on one

Re: [KCFusion] isDefined(dynamic)

2001-08-23 Thread Daryl Banttari
Did you try it without the quotes? cfif isDefined(temp) ... /cfif Daryl - Original Message - From: LaPlante, Bryan [EMAIL PROTECTED] To: 'CF-List (E-mail) [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 4:36 PM Subject: [KCFusion] isDefined(dynamic) While running a custom tag that

Re: [KCFusion] CFtelnet

2001-08-23 Thread Daryl Banttari
I think cfx_tcpclient might be just the thing for you: http://www.intrafoundation.com/freeware.html Daryl - Original Message - From: cfhelp To: [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 6:57 PM Subject: [KCFusion] CFtelnet I need to launch a telnet

Re: [KCFusion] Prepared statements

2001-08-31 Thread Daryl Banttari
I believe the checkbox is use stored procedure for prepared statement or something along that line. If you check it, then the SQL Server ODBC driver will use sp_executeSQL whenever the use of CFQUERYPARAM would normally create a regular preparedStatement. From SQL2000 books online:

Re: [KCFusion] ColdFusion Failover

2001-09-04 Thread Daryl Banttari
CF Enterprise includes ClusterCats, which can be used with any version of NT/2000 (not just NTAS) for load-balancing and failover. Beware: session variables don't load-balance well, since they aren't actually shared across servers. ClusterCats uses some DNS trickery to stick a given session to

Re: [KCFusion] OLE DB

2001-09-05 Thread Daryl Banttari
According to the Administration (5.0) Manual, the value for Jet (Access) is: Microsoft.Jet.OLEDB.4.0 I'm told that OLEDB is much faster/stabler for Access databases than ODBC is, though SQL Server users will see little or no improvement. (Beware of date issues though; ODBC-formatted dates don't

Re: [KCFusion] Progress Database

2001-09-26 Thread Daryl Banttari
What platform? If Linux/Solaris, A required environment variable (or two) may be missing or incorrect. Usually, updating the start script with the environment that the command-line client uses, does the trick. Daryl - Original Message - From: Rick Eidson To: '[EMAIL PROTECTED]'

Re: [KCFusion] off topic - IMail javascript box

2001-11-15 Thread Daryl Banttari
Not sure how they turned that off, but what I would do next is simply watch the page load over the wire. Ethereal is an open-source packet sniffer that works quite nicely for this purpose, and I recently added a section to Daryl's TCP/IP Primer on its use: http://www.ipprimer.com/packets.cfm

Re: [KCFusion] Looping Over A Large Cached Query To Test Against Data

2001-10-09 Thread Daryl Banttari
Caching 13,000 rows? Wow... are you sure that's more efficient than a query with an index on my_field_to_watch? (or whatever it's really called) Anyway... most string inequalities of this sort are due to spaces being at the end of the data from the query (e.g., if it's a CHAR, not VARCHAR,

Re: [KCFusion] CustomTags

2001-10-10 Thread Daryl Banttari
The parent's variable scope is caller. You can also use the 'request. scope, which is global to all templates in the page request, but is not shared across requests, so does not require CFLOCKing the way Application and Session vars do. --Daryl - Original Message - From: Nathan Haley

Re: [KCFusion] form variable lists

2001-10-16 Thread Daryl Banttari
#Form.FieldNames# - Original Message - From: Laire Josh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 16, 2001 10:50 AM Subject: [KCFusion] form variable lists Is there any way to retreive a list of variable names passed through a form?

Re: [KCFusion] string functions

2001-12-04 Thread Daryl Banttari
You could start here: http://livedocs.allaire.com/cf50docs/CFML_Reference/Functions2.jsp#1099887 Knowing what all of the string functions are (and what they do) is the first step. I recommend reading the language reference cover-to-cover, twice. The point is not memorization, but the ability to

Re: [KCFusion] off topic - classpath, xml and java

2001-12-10 Thread Daryl Banttari
Keith, I don't think you need to put the files in the classpath, just the directory. Don't forget to include \jre\lib in the classpath. The .exe's have no business there. I actually wrote a DevCenter article that may be helpful (though it's a but basic). It should be in the next issue, but

Re: [KCFusion] off topic - classpath, xml and java

2001-12-10 Thread Daryl Banttari
depending on your setup and what you are doing you may need to explicitely include the jar file in your path). Girish Daryl Banttari [EMAIL PROTECTED]To: [EMAIL PROTECTED] t cc: Sent

Re: [KCFusion] CFTRY CFCATCH

2001-12-21 Thread Daryl Banttari
priority when errors occur? 2. In looking at the docs for CFERROR Type=Exception it indicates that the clause EXCEPTION=exception_type is required, I am not sure what the allowed values for exception_type are? Thanks, Ron. -Original Message- From: Daryl Banttari Sent: Thu 12/20/2001 7:21

Re: [KCFusion] CFHTTP hopeless with proxy?

2002-01-11 Thread Daryl Banttari
I once got a Java http client working from within CF. Here's what I did to get it working: 1. Download the HTTPClient class files (.zip) from http://www.innovation.ch/java/HTTPClient/ 2. Extract to C:\jdk1.3\jre\lib\HTTPClient 3. Add C:\jdk1.3\jre\lib\ as Class Path in CF Admin 4. Run

Re: [KCFusion] CFHTTP hopeless with proxy?

2002-01-14 Thread Daryl Banttari
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Daryl Banttari Sent: Monday, January 14, 2002 9:30 AM To: [EMAIL PROTECTED] Subject: Re: [KCFusion] CFHTTP hopeless with proxy? java.lang.ClassNotFoundException means that CF couldn't find the class files... One of two things

Re: [KCFusion] CFHTTP hopeless with proxy?

2002-01-14 Thread Daryl Banttari
copies of the original message. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Daryl Banttari Sent: Monday, January 14, 2002 9:48 AM To: [EMAIL PROTECTED] Subject: Re: [KCFusion] CFHTTP hopeless with proxy? Drop HTTPClient from the end of the lib path

Re: [KCFusion] MS SQL and query results

2002-01-28 Thread Daryl Banttari
Assuming the username is unique, simply drop the and Pword = '#Trim(form.Pword)#' and check the password match at the application layer. --Daryl - Original Message - From: Keith Purtell [EMAIL PROTECTED] To: KCFusion (E-mail) [EMAIL PROTECTED] Sent: Monday, January 28, 2002 11:02 AM

Re: [KCFusion] Text box value

2002-01-28 Thread Daryl Banttari
Use the htmlEditFormat() function around the value. Value=#htmlEditFormat( someValue )# This will replace the double quotes with quot;, as needed. --Daryl - Original Message - From: Laire Josh [EMAIL PROTECTED] To: KCFusion (E-mail) [EMAIL PROTECTED] Sent: Monday, January 28, 2002

Re: [KCFusion] How to preserve lt; and gt; strings... (was: Text box value)

2002-01-28 Thread Daryl Banttari
to the textarea. Even with CF, the htmlEditFormat() fn is a little too several for my purpose, since it also escapes legitimate and marks, and strips carriage returns. -Ron -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Daryl Banttari Sent: Monday

Re: [KCFusion] Secure file download

2002-02-04 Thread Daryl Banttari
Why would CFCONTENT be slow? How would CFFILE replace CFCONTENT? You may want to take a moment and re-examine your assumptions... --Daryl - Original Message - From: Keith Purtell [EMAIL PROTECTED] To: KCFusion (E-mail) [EMAIL PROTECTED] Sent: Monday, February 04, 2002 3:41 PM Subject:

[KCFusion] CFHTTP

2002-02-04 Thread Daryl Banttari
Is anyone on the list using CFHTTP extensively? I'm going to be doing some QA work on that tag for Neo, and I want to hear about anyone's negative experiences with CFHTTP. Please contact me off-list, so we don't clutter everyone's inbox. --Daryl

Re: [KCFusion] Tuesday's meeting

2002-02-12 Thread Daryl Banttari
Wow... the silence is deafening. Anyone curious about Neo? --Daryl - Original Message - From: Ryan Hartwich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 11, 2002 4:51 PM Subject: [KCFusion] Tuesday's meeting Is anyone planning on coming to tomorrow (Tuesday's) CF

Re: [KCFusion] Tuesday's meeting

2002-02-12 Thread Daryl Banttari
: Daryl Banttari [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 12, 2002 1:21 PM To: [EMAIL PROTECTED] Subject: Re: [KCFusion] Tuesday's meeting OK, I'll bring it along on my laptop. Can someone find a projector? I can throw Beta 1 on a CDR, so if anyone wants a copy, let me know beforehand

Re: [KCFusion] Tuesday's meeting

2002-02-12 Thread Daryl Banttari
to promise not to look, if I start playing with it.) --Daryl - Original Message - From: Daryl Banttari [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 12, 2002 1:50 PM Subject: Re: [KCFusion] Tuesday's meeting Well, the beta does imply an NDA, but it is in (semi-)public

Re: [KCFusion] Flatlined Services

2002-02-27 Thread Daryl Banttari
The two usual suspects are database drivers and CFX tags. If the db driver stops responding to requests normally, then all of the threads will hang. Similarly, if a CFX tag hangs, and enough requests enter the CFX so that all of the maximum simultaneous requests are hung, then all new requests

Re: [KCFusion] innerText Help!

2002-03-14 Thread Daryl Banttari
Using jsEncodedFormat() might help. Generally, just put a backslash before the special character: foo = 'You want the truth? You can\'t handle the truth!' --daryl - Original Message - From: LaPlante, Bryan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 12, 2002 3:08 PM

Re: [KCFusion] Replacing double quotes in a string

2002-03-15 Thread Daryl Banttari
If you're putting the values into option value=..., then use htmlEditFormat(...) to escape the quotes into quot; --Daryl - Original Message - From: Keith Purtell [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 15, 2002 4:43 PM Subject: RE: [KCFusion] Replacing double quotes

Re: [KCFusion] Query Problem

2002-03-30 Thread Daryl Banttari
Misty, Try using the Microsoft ODBC driver for Oracle (seriously!). For one thing, there is a bug in the way the Oracle native client handles CLOBs (if you're using them), that the MS driver does not have. In particular, we've had to tell people with Spectra sites to not use the native

Re: [KCFusion] OT: browser type

2002-04-15 Thread Daryl Banttari
Probably a Java-based vulnerability scanner. If your site is linked a lot, expect /many/ of these sorts of attempts every day. Things like: (a sample of the most popular vulnerability scans from my logs) /_vti_bin/_vti_aut/author.exe /cgi-bin/formmail.pl /msoffice/cltreq.asp

Re: [KCFusion] 100% processor time used (ntconsolejava)

2002-04-15 Thread Daryl Banttari
(a) uninstall and reinstall CF or (b) if you're not using cfgraph, disable the ColdFusion Graphing Server. --Daryl - Original Message - From: Richard Morrison To: [EMAIL PROTECTED] Sent: Monday, April 15, 2002 11:42 PM Subject: [KCFusion] 100% processor time

Re: [KCFusion] Form fields a structure in CF5

2002-04-23 Thread Daryl Banttari
Fieldnames is not a struct. Form is. isStruct(Form) is true. Also, stop using evaluate or structFind(), use array syntax! cfoutput cfloop collection=#form# item=i the form element #i# has the value #form[i]#! - Original Message - From: Keith Purtell [EMAIL PROTECTED] To: [EMAIL

Re: [KCFusion] Form fields a structure in CF5

2002-04-23 Thread Daryl Banttari
Fieldnames is not a struct. Form is. isStruct(Form) is true. Also, stop using evaluate or structFind(), use array syntax! cfoutput cfloop collection=#form# item=i the form element #i# has the value #form[i]#!br /cfloop /cfoutput --Daryl P.S. It's important to remember that unlike Studio,

[KCFusion] [OT] Spam Reduction

2002-06-09 Thread Daryl Banttari
Hey everyone, My signal-to-noise ratio with regard to SPAM has gotten to about 20%, and I'm fed up. So I did something about it. My weekend project was building a generic SMTP proxy for mail servers, that works with the SpamCop blackhole list. I looked for a new NT mailserver that would

Re: [KCFusion] Processor Spicked

2002-06-21 Thread Daryl Banttari
Check for zero-length files in \cfserver\mail\spool and delete them. Is that it? --Daryl - Original Message - From: cfhelp [EMAIL PROTECTED] To: CF-List (E-mail) [EMAIL PROTECTED] Sent: Friday, June 21, 2002 9:38 PM Subject: [KCFusion] Processor Spicked Isn't there some known issues

Re: [KCFusion] Processor Spicked

2002-06-22 Thread Daryl Banttari
or pour technicians I don't see how the emails would have crashed it. How would a Zero Length file get in the Spool? Rick -Original Message- From: Daryl Banttari [mailto:[EMAIL PROTECTED]] Sent: Friday, June 21, 2002 9:53 PM To: [EMAIL PROTECTED] Subject: Re: [KCFusion] Processor

Re: [KCFusion] CFMX Possible Bug HELP!

2002-08-12 Thread Daryl Banttari
Actually, there was a slight change in behavior with CFMX. In CF5 (and prior), automatic SQL string quoting would not happen if a function was used against the data (in this case, the Left() function). In CFMX, the strings are properly escaped, even if a function is used first. So, you should

Re: [KCFusion] CFMX Possible Bug HELP!

2002-08-12 Thread Daryl Banttari
Actually, this is the exact opposite problem I thought it was at first glance. It's not that single quotes are being quoted that shouldn't, the problem is that single quotes are getting overlooked. Let me try to replicate that and get back to the list. --Daryl - Original Message -

Re: [KCFusion] OT- DNS question reverse lookup

2002-08-29 Thread Daryl Banttari
The people who gave you your IP address range have to delegate the reverse DNS for your subnets to you. Until then, the world doesn't know to ask your servers for the reverse lookup info. This process is simple, and shouldn't take long for your upstream provider to complete. --Daryl -

Re: [KCFusion] checking for nulls...

2002-09-12 Thread Daryl Banttari
Michael, ColdFusion has no true null primitive. It is, therefore, impossible through normal means to differentiate between a true null and the zero-length string nulls are translated into. For an example of working around this when using Java classes, see my article, Leveraging Java Classes

Re: [KCFusion] CFApplication::execute

2002-09-12 Thread Daryl Banttari
Sounds like someone is using unlocked Application and/or Session variables. If they're running a shared hosting environment, they should consider turning on "full checking" for both variable types to identify the culprit. --Daryl - Original Message - From: cfhelp To:

Re: [KCFusion] deletes on database?

2002-09-12 Thread Daryl Banttari
or Oracle. --Daryl Banttari Macromedia - Original Message - From: Adaryl Wakefield [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 12, 2002 12:58 PM Subject: Re: [KCFusion] deletes on database? Hey why is it every time I post something it generates an avalanche

Re: [KCFusion] KC CF employment opportunity

2002-09-18 Thread Daryl Banttari
Candidate should also: - Be able to do high-level management, yet retain a current, practical knowledge of 80386 machine language and have memorized the complete Win32 API; - Have a Zodiac sign of Pisces, Virgo, or Leo. Aquarius will not be considered; - Have between 18 and 24 months' practical

Re: [KCFusion] Impossible Candidate

2002-10-03 Thread Daryl Banttari
Darn... I was doing fine until I hit the team player requirement. Oh well... ;-) --Daryl - Original Message - From: Misty Woodward [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 03, 2002 1:21 PM Subject: [KCFusion] Impossible Candidate I know last week we had the

Re: [KCFusion] Impossible Candidate

2002-10-03 Thread Daryl Banttari
I'd look for more honesty in those that weeded themselves out ;-) --Daryl - Original Message - From: Matt Jones [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 03, 2002 1:41 PM Subject: RE: [KCFusion] Impossible Candidate They could have the candidates interview

Re: [KCFusion] a design question (off topic)

2002-12-07 Thread Daryl Banttari
Adaryl, The onClick handler for submit buttons requires that you return a "true" or "false" value from the handler, which determines whether or not the form submission actually happens. If you wanted the form to actually submit after the "goEmail()" function completes, you'd do this:

Re: [KCFusion] Email Problem

2002-12-11 Thread Daryl Banttari
Those are Tabs... - Original Message - From: cfhelp [EMAIL PROTECTED] To: KCFusion [EMAIL PROTECTED] Sent: Wednesday, December 11, 2002 7:22 PM Subject: [KCFusion] Email Problem One of our newsletter clients is getting email all full of ==09. They are running Win2k and Using Netscape

Re: [KCFusion] Verity

2003-06-09 Thread Daryl Banttari
Rick, blue and ear should return the results you want. In fact, for simple user searches, using listChangeDelims(searchTerms, and , ) will force an and between each search term. This will cause an error if the user puts in their own and or or, so only do that if there's not already an and or