UNSUBSCRIBE

2003-01-09 Thread Ryan Farrell
UNSUBSCRIBE ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq This

RE: UNSUBSCRIBE

2003-01-09 Thread Ryan Farrell
Nuts. The auto unsubscribe link at the bottom of the email isn't working. How do I unsubscribe? Thanks, Ryan -Original Message- From: Ryan Farrell [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 9:06 AM To: CF-Talk Subject: UNSUBSCRIBE UNSUBSCRIBE

Unsubscribing

2003-01-09 Thread Ryan Farrell
Hey, folks! Since the auto unsubscribe link at the bottom of these email posts don't work, how do I unsubscribe? Thanks! Ryan ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Unsubscribing

2003-01-09 Thread Ryan Farrell
of us, forever and ever and ever...hahahahahha -Original Message- From: Ryan Farrell [SMTP:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 10:12 AM To: CF-Talk Subject: Unsubscribing Hey, folks! Since the auto unsubscribe link at the bottom of these email

RE: CFEXECUTE aborting on Solaris

2002-12-19 Thread Ryan Farrell
We called Macromedia on this one back when we had a support plan. The official fix is to restart the server when you notice the problem. Gah! Ryan -Original Message- From: Cathy Taylor [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 11:02 AM To: CF-Talk Subject: CFEXECUTE

Dynamic Application Variable and the Duplicate() Function

2002-12-18 Thread Ryan Farrell
(application.class#url.class#) /cfif /cflock The above throws an invalid expression format error. I've tried this a variety of ways but can't get it to work. The application variable is a two-dimensional array. Thanks, Ryan Farrell .:i:. Programmer Nuovo Technologies [EMAIL PROTECTED] 850-939

RE: Dynamic Application Variable and the Duplicate() Function

2002-12-18 Thread Ryan Farrell
-Original Message- From: Ryan Farrell [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 18, 2002 10:46 AM To: CF-Talk Subject: Dynamic Application Variable and the Duplicate() Function Well, I can set my dynamic variable just fine, but reading it appears to be an issue. Please

Quotes in a query string

2002-12-12 Thread Ryan Farrell
! sqlString = sqlString and ad.datePlaced = ' trim(form.date) '; Ryan Farrell .:i:. Programmer Nuovo Technologies [EMAIL PROTECTED] 850-939-1548 x16 http://www.nuovotech.com ~| Archives: http://www.houseoffusion.com/cf_lists

RE: Quotes in a query string

2002-12-12 Thread Ryan Farrell
Bah, nevermind, forgot about the preserveSingleQuotes function. Thanks, anyways. Ryan -Original Message- From: Ryan Farrell Sent: Thursday, December 12, 2002 8:43 AM To: CFTalk (E-mail) Subject: Quotes in a query string I'm building a string to put in a cfquery

RE: Multiple Collections In One Verity Search

2002-12-11 Thread Ryan Farrell
You could use the custom1 or custom2 field to uniquely identify each collection when you index it. Then you can tell which collection the current row is from when outputting your search results. cfindex action=refresh collection=scholarships query=getinfo title=text body=text key=id

DB2 Stored Proc

2002-12-10 Thread Ryan Farrell
of the cfprocresult name and I get back 1 and the correct adID; #columnList# yields 1. Any ideas? Code is below, but probably not helpful 'cause it's just a test. cfstoredproc datasource=#ds# procedure=test cfprocresult name=insert /cfstoredproc cfdump var=#insert# Ryan Farrell .:i:. Programmer

RE: Recursive File Delete

2002-12-03 Thread Ryan Farrell
cfdirectory action=list directory=mydirectory name=dirlist cfoutput query=dirlist cffile action=delete file=#name# /cfoutput Ryan -Original Message- From: David Adams [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 03, 2002 3:22 PM To: CF-Talk Subject: Recursive File

RE: cfexecute under Unix?

2002-11-14 Thread Ryan Farrell
Works just fine on Solaris 8. -Original Message- From: Dick Applebaum [mailto:dicklacara;mac.com] Sent: Thursday, November 14, 2002 3:43 PM To: CF-Talk Subject: Re: cfexecute under Unix? I get execution OK on CFMX Mac OS X (Linux port) The execution of this particular script causes an

RE: CF 5 Scheduler fails

2002-11-12 Thread Ryan Farrell
After getting a few months of support from Allaire, we've been running a weekly-scheduled series of scripts successfully for about a year now. We are CF 5 on Solaris. The trick was to always schedule a task so that the start date was actually a week prior to when you wanted the task to begin.

RE: CFLOCK and data integrity question

2002-11-08 Thread Ryan Farrell
Yeah, we had to implement the cflock solution specifically because cftransaction and DB2 don't play nice. It was pretty ugly when we originally programmed the app thinking that cftransaction would be just fine. ::thumbs up:: . . . not. Ryan -Original Message- From: Jim Davis

RE: Resizing images under Linux

2002-11-05 Thread Ryan Farrell
We are working with something called AutoImager. Our particular solution requires that we resize images and create thumbnails in a nightly batch, but the program may be able to meet your requirements. Check it out at http://www.mystikmedia.com/autoimager.asp. Ryan -Original Message-

CF5 Cfexecute on Solaris

2002-10-30 Thread Ryan Farrell
Anyone else had trouble with cfexecute on Solaris 8? I've checked file permissions; that's not it. I can login to the server as the same user that's running Cold Fusion and untar the file without a problem. But the following code does nothing: .cfexecute name=/usr/sbin/tar arguments=xf

RE: multi-lingual translations

2002-10-30 Thread Ryan Farrell
www.sysystransoft.com can help with translation. The downside is the price, the fact that they can only process 64k worth of html at a time, and it requires some weird code monkeying to integrate with them. You might want to give it a look, though. Ryan -Original Message- From: Simon

Locking and clustered servers

2002-10-28 Thread Ryan Farrell
Ok, we are thinking about setting up 2 port redirectors/load balancers (hardware) and 5 separate servers running CF 5. So, the only problem is that some of our code has named locks to prevent simultaneous record insertions on a particular table. I can't think of any way to make a lock

RE: Locking and clustered servers

2002-10-28 Thread Ryan Farrell
We're using DB2 for Solaris. We have tried using cftransaction isolation=READ_UNCOMMITTED, but that doesn't work for some reason. Ryan -Original Message- From: John Morgan [mailto:gameczar;zbzoom.net] Sent: Monday, October 28, 2002 9:44 AM To: CF-Talk Subject: Re: Locking and clustered

RE: Locking and clustered servers

2002-10-28 Thread Ryan Farrell
: Locking and clustered servers Ryan Farrell wrote: We're using DB2 for Solaris. We have tried using , but that doesn't work for some reason. In combination with what? If you do it in combination with something to SELECT MAX(id) from your table it indeed won't work. What you are trying

RE: How to find out the page to send 'em back to

2001-10-05 Thread Ryan Farrell
Hmmm, maybe I don't understand the full scope of what you're asking, but seems like you could do this: - When a user hits a secure page, redirect to the login page with a URL variable containing the page they hit (for example, .cflocation url=login.cfm?referer=#cgi.script_name#). - Pass that

RE: Pass content to/from ASP page

2001-09-20 Thread Ryan Farrell
I'm just a novice with ASP, but I'd probably go with posting hidden form fields or query string variables from one to the other. Ryan -Original Message- From: Kevin Derby [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 20, 2001 3:07 PM To: CF-Talk Subject: Pass content to/from ASP

Solaris and Zipping

2001-08-28 Thread Ryan Farrell
We're on a Solaris platform and we need a way to loop through a directory listing and add certain files to a WinZip compatible file. Ugh! All the cutoms I can find are meant to run on Windows boxes. Anyone know of a Solaris-friendly solution? Thanks, Ryan Farrell .:i:. Programmer Nuovo

3-dimensional array

2001-02-05 Thread Ryan Farrell
How do I cfset a 3-dimensional array? Thanks, Ryan Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

RE: why use 3rd dimensional array???

2001-02-05 Thread Ryan Farrell
well, I've figured another way around this problem, but I'd still like to know how to do this. Sorry I was not more specific in my question. I know how to declare the array, but how do I load data into all 3 dimensions? -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]]

Verity Indexing?

2001-01-11 Thread Ryan Farrell
Okay, I have many existing verity collections that need to be indexed weekly. I currently run a cfindex action="update" tag, followed by a cfcollection action="optimize" tag. Is this the best way? Thanks, Ryan Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

RE: return every Friday for a year

2001-01-11 Thread Ryan Farrell
I had to tackle this for my latest project (well, it was every Thursday) but we ended up writing a DB2 stored procedure and storing the dates in its own table (the CF is messy, blech). Just about everything the site does depends on those dates, so it is more efficient for us to use a separate