For questions specific to the usage of the CFML (ColdFusion Markup Language) tag named
Questions tagged [cfexecute]
38 questions
0
votes
1 answer
Running AWS polly with cfexecute
I am trying to use AWS Polly inside of ColdFusion.
This works just fine
cfexecute(
variable = "standardOutput",
name = "aws",
arguments = "polly help",
timeout =…

James A Mohler
- 11,060
- 15
- 46
- 72
0
votes
0 answers
Print Images using CFEXECUTE
I have an image gallery running in ColdFusion. I would like to be able to print the images, without generating a PDF first. I believe this can be done using CFEXECUTE.
Basically there will be a session storing the images and when the proceed button…

johnnyc0506
- 133
- 1
- 3
- 12
0
votes
1 answer
cfquery to queryExecute: if inside SQL string
what is the best way to do what I did in even in queryExecute
cfquery
SELECT * FROM tbl_products
WHERE filed1 = 1
AND filed2 = 2
ORDER BY id…

Ivan
- 515
- 3
- 7
- 22
0
votes
1 answer
Is cfexecute timeout=0 as good as cfthread action=run if no output needed?
Looking at some legacy code and the programmer in question uses:
Can one safely replace the code above with this?
Is…

Henry
- 32,689
- 19
- 120
- 221
0
votes
1 answer
CFExecute not working for imagemagick's command
I am running the following command using ColdFusion's cfexecute: composite -geometry +2+2 "C:\Inetpub\wwwroot\isubscribe_uk\diomedes\www\images\newsletter\316\resized.png"…

nasaa
- 2,701
- 8
- 47
- 76
0
votes
1 answer
cfexecute with pipe(|) character command not working
I am trying to execute an sc query command:
But it fails with the…

user1479328
- 13
- 1
- 4
0
votes
2 answers
How to overcome batch file execution part way through when using CFExecute with PsExec to run Git actions?
I’m encountering a weird issue and have tried many different things.
The goal is to have a user click a button on a web page that will execute a batch file on several other servers.
I am using ColdFusion 8. When the user clicks the button,…

Alex
- 9
- 4
-1
votes
1 answer
Insert data into database using sqlldr in coldfusion
I have a CSV file that I got from a website. I need to upload that same CSV file into my database using SQLLDR in ColdFusion. For some reason I'm not able to insert the data into database.
Below is my code. Using this code I was not able to insert…

user3440782
- 144
- 1
- 14