Re: syntax for cli execution of a cfm page?

2001-04-22 Thread Mark Woods
At 08:32 PM 18/04/2001, you wrote: Thanks for the info guys. In case anyone was wondering: cfml.exe c:\path\template.cfm does actually work. ;p cool, anyone know if this is new to cf 4.5? I don't know if I ever actually tried just running cfml.exe with the path as a parameter before, I'm

RE: syntax for cli execution of a cfm page?

2001-04-22 Thread Sicular, Alexander
ive been using it since cf3. there is always an exe to be used as a cgi program if there was no api for the webserver of your choice. -Original Message- From: Mark Woods [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 22, 2001 5:42 AM To: CF-Talk Subject: Re: syntax for cli execution

syntax for cli execution of a cfm page?

2001-04-18 Thread Tony Schreiber
What is the syntax to use to execute a cfm page directly from the commmand line? Something like cfml.exe /path/to/template.cfm? (Win2000, CF4.5) Also, where does the output go of the page when you do this? And, does RequestTimeout have any use here, or will the process run as long as it

RE: syntax for cli execution of a cfm page?

2001-04-18 Thread Ruben Chadien
: den 18 april 2001 19:05 To: CF-Talk Subject: syntax for cli execution of a cfm page? What is the syntax to use to execute a cfm page directly from the commmand line? Something like cfml.exe /path/to/template.cfm? (Win2000, CF4.5) Also, where does the output go of the page when you do

Re: syntax for cli execution of a cfm page?

2001-04-18 Thread Mark Woods
The cfml.exe executes the template specified in the CF_TEMPLATE_PATH environment variable. So first set this to the physical path to the CFML template you want to execute. e.g. set CF_TEMPLATE_PATH=c:\inetpub\wwwroot\temp\test.cfm then run cfml.exe c:\cfusion\cfml.exe You can also pass query

Re: syntax for cli execution of a cfm page?

2001-04-18 Thread Tony Schreiber
Thanks for the info guys. In case anyone was wondering: cfml.exe c:\path\template.cfm does actually work. ;p Works great too. I can run my template which will probably take all night without tying up studio or a browser window or worrying about request timeout The cfml.exe executes the