Re: Mechanisms for stopping a running script

2003-06-09 Thread Tony Schreiber
The purpose of the second process is to delete the flag file, then stop. The long running process will then stop when it detects that the flag file is NOT existing... Adding a FileExists probably slows down the whole thing a bit, but you could do it every 100 iterations or so, depending on how

cfform and cfide mapping

2003-06-09 Thread Tim Do
I've tried to find out details on this but could find it in the archives.. can anybody tell me what I need to do to get cfform working on mx? Thanks, http://www.wng.com/ Tim Do Programmer/Analyst Western National Group 949.862.6231 www.wng.com

Re: Permissions

2003-06-09 Thread Richard Crawford
Hm. I'm wondering if, at this point, it would be worth simply reinstalling Cold Fusion. At 01:54 PM 6/9/2003 -0700, you wrote: At 04:23 PM 6/9/2003 -0400, you wrote: cfinclude page2.cfm # Yes, page2.cfm exists. It should be: cfinclude template=page2.cfm I'm not sure if that was a

RE: client variables problem on MX

2003-06-09 Thread Mark W. Breneman
I think I have the same problem with client vars. But in my case one out of every ~5000 users gets an error. null null The error occurred on line 4. Line 4 is the title. Does this sound like the same problem? I have been trying to track this problem down. I saw something a few months ago in

RE: cfform and cfide mapping

2003-06-09 Thread Chris Kief
http://www.macromedia.com/support/coldfusion/ts/documents/cfform_multihomed. htm watch for url wrapping... chris -Original Message- From: Tim Do [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 2:51 PM To: CF-Talk Subject: cfform and cfide mapping I've tried to find out details

RE: checking if cfapplication has run

2003-06-09 Thread S . Isaac Dealey
I have a custom tag that wants to use application variables (for performance). Since you need to run a cfapplication tag to use the application scope, it needs to somehow check if that tag has run. I have no clue how to do this. Is it possible? I would think that you should be able to do

Re: Mechanisms for stopping a running script

2003-06-09 Thread S . Isaac Dealey
I've been thinking about some ideas on how to stop running scripts, like an ABORT button. This is the first thought I came up with. Any other ideas? This comes up for me because I have several LONG running scripts that occassionally, I might want to stop w/o having to bounce the cf server

Re: Mechanisms for stopping a running script

2003-06-09 Thread admin
how would one do that if it was a long running query ? - I've got the same problem but I think it's sql that's causing the problem. Cheers Richard - Original Message - From: S. Isaac Dealey [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, June 09, 2003 3:20 PM Subject: Re:

RE: client variables problem on MX

2003-06-09 Thread Bud
I think I have the same problem with client vars. But in my case one out of every ~5000 users gets an error. null null The error occurred on line 4. Line 4 is the title. Does this sound like the same problem? I have been trying to track this problem down. I saw something a few months ago in

RE: SQLXML

2003-06-09 Thread Cantrell, Adam
Ahhh, I was going off of this page, which lists the SOAP toolkit as a requirement.: http://www.microsoft.com/downloads/details.aspx?FamilyId=4023DEEA-F179-45DE- B41D-84E4FF655A3Bdisplaylang=en I knew SQL2K came with some XML capabilities, but didn't know it was as extensive as this page makes it

Is there an END WHILE for CFLOOP?

2003-06-09 Thread Matt Robertson
I'm looping over an array like so: cfloop from=1 to=#ArrayLen(application.myArray)# index=ArrayRows ...blahblahblah... /cfloop Is there a way for me to stop execution of a as soon as the loop code finds what it wants? i.e. cfif foo is barendwhile goes

Re: cfform and cfide mapping

2003-06-09 Thread S . Isaac Dealey
I've tried to find out details on this but could find it in the archives.. can anybody tell me what I need to do to get cfform working on mx? Thanks, http://www.wng.com/ Tim Do Programmer/Analyst Western National Group 949.862.6231 www.wng.com Hi Tim, It's going to depend on how

Re: Is there an END WHILE for CFLOOP?

2003-06-09 Thread Bryan Stevenson
yepconditional loops...check the docs ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

Red Sky beta 2 released

2003-06-09 Thread Tilbrook, Peter
For those beta testing Red Sky, MM have just released beta 2, available at the usual place. Happy testing. == Peter Tilbrook Internet Applications Developer Australian Building Codes Board GPO Box 9839 CANBERRA ACT 2601 AUSTRALIA WWW: http://www.abcb.gov.au/ E-Mail: [EMAIL PROTECTED]

RE: Is there an END WHILE for CFLOOP?

2003-06-09 Thread Costas Piliotis
Sort of... cfif ArrayRows = 69 cfexit method=LOOP /cfif -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 3:42 PM To: CF-Talk Subject: Is there an END WHILE for CFLOOP? I'm looping over an array like so: cfloop from=1

Re: Mechanisms for stopping a running script

2003-06-09 Thread S . Isaac Dealey
... hmmm... a long running query is a tougher issue... If you're talking about a stored procedure you could theoretically do something similar with a temp row in a table where the procedure checks for a flag after each particular event in the procedure. Unfortunately this may result in error's

Re: Is there an END WHILE for CFLOOP?

2003-06-09 Thread S . Isaac Dealey
I'm looping over an array like so: cfloop from=1 to=#ArrayLen(application.myArray)# index=ArrayRows ...blahblahblah... /cfloop Is there a way for me to stop execution of a as soon as the loop code finds what it wants? i.e. cfif foo is barendwhile goes here/cfif

RE: cfform and cfide mapping

2003-06-09 Thread Tim Do
Thanks to you guys that replied... I didn't want to change all the code so I just created the virutal directory and all seems to be working again.. Thanks again! -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 3:37 PM To: CF-Talk Subject:

Re: Is there an END WHILE for CFLOOP?

2003-06-09 Thread S . Isaac Dealey
Well there's that too... cfloop condition=myvar is ''.../cfloop But if you're looping over an array (as in the example below) and you just want to exit the loop on a condition that's satisfied by something you're doing with the array, often you still want to use the index loop rather than

RE: Is there an END WHILE for CFLOOP?

2003-06-09 Thread S . Isaac Dealey
Ewww ick... try cfbreak instead... :) Sort of... cfif ArrayRows = 69 cfexit method=LOOP /cfif -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 3:42 PM To: CF-Talk Subject: Is there an END WHILE for CFLOOP? I'm looping over an

Re: Is there an END WHILE for CFLOOP?

2003-06-09 Thread Matt Robertson
Perfect. CFBREAK was just what I needed and couldn't find. Can't use a conditional under the circumstances. Thx all, --Matt-- ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

ArrayAppend with a 2d array?

2003-06-09 Thread Matt Robertson
Today is my day for dumb questions I suppose... I've always appended to 2d arrays while in a loop, as part of the initial array build process, so determining the first dimension value was never a problem. Never needed to come back to them and append something later, but I do now. All of the

Re: Permissions

2003-06-09 Thread Dave Carabetta
Hm. I'm wondering if, at this point, it would be worth simply reinstalling Cold Fusion. You are, of course, free to do as you wish, but we need more information, per Dave Watts' post, regarding your version of MX and whether or not you're using the internal web server or IIS/Apache, etc.

Re: Permissions

2003-06-09 Thread Richard Crawford
Sorry, I thought I gave that information. CF Code: Irrelevant. I could post more CF code, but since *ALL* CF code throws the errors that I mentioned, it doesn't seem useful. This is a server error, as far as I can tell, not a coding error. Version of MX: I'm afraid that I can't track down a

RE: Is there an END WHILE for CFLOOP?

2003-06-09 Thread Costas Piliotis
Eww ick? Doesn't work? -Original Message- From: S.Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 3:52 PM To: CF-Talk Subject: RE: Is there an END WHILE for CFLOOP? Ewww ick... try cfbreak instead... :) Sort of... cfif ArrayRows = 69 cfexit method=LOOP

RE: Permissions

2003-06-09 Thread Chris Kief
Ahh, you're using CFMX for JRun. You'll need to download the latest installer from macromedia. The installer you're using is most likely the 'phase 1' installer which doesn't play well with JRun SP1a without some tweaking. hope that helps, chris -Original Message- From: Richard

RE: Is there an END WHILE for CFLOOP?

2003-06-09 Thread Matt Robertson
I was testing for something that could occur at any point within the array loop. So cfif array value=condition then cfbreak was the hot ticket. --- Matt Robertson, [EMAIL PROTECTED] MSB Designs, Inc. http://mysecretbase.com

Re: Permissions

2003-06-09 Thread Dave Carabetta
Sorry, I thought I gave that information. CF Code: Irrelevant. I could post more CF code, but since *ALL* CF code throws the errors that I mentioned, it doesn't seem useful. This is a server error, as far as I can tell, not a coding error. Version of MX: I'm afraid that I can't track down

RE: Is there an END WHILE for CFLOOP?

2003-06-09 Thread Costas Piliotis
Oh... I need to RTFM again :) My bad -Original Message- From: Costas Piliotis Sent: Monday, June 09, 2003 4:39 PM To: CF-Talk Subject: RE: Is there an END WHILE for CFLOOP? Eww ick? Doesn't work? -Original Message- From: S.Isaac Dealey [mailto:[EMAIL PROTECTED] Sent:

RE: ArrayAppend with a 2d array?

2003-06-09 Thread Bryan Love
In a two dimensional array the only thing you can append to the first dimension is another 1-dimensional array. That means that in the loop you'd need to build a one dimensional array then append it (or something comparable) This would work: cfset x = arrayNew(2) cfloop from=1 to=20 index=i

RE: ArrayAppend with a 2d array?

2003-06-09 Thread Matt Robertson
ah, perfect! Thanks! --- Matt Robertson, [EMAIL PROTECTED] MSB Designs, Inc. http://mysecretbase.com --- ~| Archives:

Cfexecute problems

2003-06-09 Thread Jon Hart
Has anyone run into issue getting cfexecute to work properly in cfmx? Im trying to do some stuff with cvs, but when I execute it, the cvs thread never exits. Its like its waiting for user input, but if you run cvs on the command line it prints out some handy help info and quits. This is on a

Empty cfid and cftoken - is this common?

2003-06-09 Thread Bud
I'm curious if anyone else has had the problem of the cfid and cftoken values being blank on CFMX? I'm in the process of trying to get Crystal Tech to move my site to another MX server, just because I want to run on MX. But I lost $1,000 today (first day the site was live on MX) in sales and

CF error messages

2003-06-09 Thread Barney Boisvert
In the standard CF error message, excluding encrypted templates, has anyone ever seen this before? ColdFusion cannot determine the line of the template that caused this error. This is often caused by an error in the

Re: Cfexecute problems

2003-06-09 Thread cf-talk
I have experienced situations in which a program does not execute. It was some time ago so I don't know if any of the updaters might have fixed it but the program was image ALCHEMY.EXE (handmadesoftware.com) and it worked fine in CF5... but wouldn't run in CFMX. I opted to use ImageMagick

Re: Empty cfid and cftoken - is this common?

2003-06-09 Thread cf-talk
This *might* be the same problem I've been experiencing with CFMX. We use domain cookies and every once in a while one or more of the servers decides to stop sending CFID and CFTOKEN. Upon closer inspection we discovered that the cookies really were being sent but the domain attribute in the

checking if cfapplication has run

2003-06-09 Thread Mike Mertsock
Hmm good idea. It works perfectly. Thanks! ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ:

checking if cfapplication has run

2003-06-09 Thread Mike Mertsock
Generally speaking imho it's best for custom tags to be black boxes if possible, in other words, feed it everything it needs as an attribute, and know what it returns (if anything). That way other templates never have to know anything about how the custom tag functions, all they have to know

Re: checking if cfapplication has run

2003-06-09 Thread S . Isaac Dealey
Generally speaking imho it's best for custom tags to be black boxes if possible, in other words, feed it everything it needs as an attribute, and know what it returns (if anything). That way other templates never have to know anything about how the custom tag functions, all they have to know is

RE: cf studio users

2003-06-09 Thread Greg McDaniel
I'm interested. Greg M -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 2:44 PM To: CF-Talk Subject: RE: cf studio users ColdFusionProNews is? === Raymond Camden,

RE: Permissions

2003-06-09 Thread Greg Luce
cfdump var=#SERVER.ColdFusion# I doubt that'll work. He said any CF code throws an error. -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 6:49 PM To: CF-Talk Subject: Re: Permissions Sorry, I thought I gave that information. CF Code:

Array or Structure and how?

2003-06-09 Thread Emmet McGovern
Im in a bind. Admittedly my weakness in cf is complex data. Im building a car database for someone and they want to be able to add dynamic options with options in their web admin so they can select these when adding new cars. example. color - red, yellow, blue interior - cloth, leather vinyl

Re: Empty cfid and cftoken - is this common?

2003-06-09 Thread Sean A Corfield
On Monday, Jun 9, 2003, at 18:36 US/Pacific, [EMAIL PROTECTED] wrote: My advice would be to avoid using CFID and CFTOKEN if you can and implement a roll your own solution instead. 1. Set Use UUID for CFTOKEN (or is it CFID?) in the admin. 2. Set Use J2EE Session Variables in the admin. Take

connecting with .net pages

2003-06-09 Thread Mike Kear
Sorry if this is too off-topic, but I'm not sure if I'm walking into a problem here . I don't know a lot about .net - yet - but looks like I'm going to have to do a crash course. I'm going to have to build some coldfusion content and have it blend in seamlessly with pages built in .net.

Re: Array or Structure and how?

2003-06-09 Thread Sean A Corfield
On Monday, Jun 9, 2003, at 22:07 US/Pacific, Emmet McGovern wrote: Im building a car database for someone and they want to be able to add dynamic options with options in their web admin so they can select these when adding new cars. Add a three column table: car_id - id of car to

<    1   2