Re: CF8 cfexecute Problem

2011-08-03 Thread Dave Watts
Hmmm... This runs via   cfhttp url=http://www.myserverdev.com/ipi_grabber/get.cfm?w=#xWaitDocTime#s=#lcase(attributes.website)# result=grabResult /. So the caller is on a different server than the webshot program. The caller of the CF program is really irrelevant here. It's the user

Re: CF8 cfexecute Problem

2011-08-03 Thread Richard Steele
That worked! Thank you so much! Is it because both the program Webshot and ColdFusion were installed under my user account? ~| Order the Adobe Coldfusion Anthology now!

Re: CF8 cfexecute Problem

2011-08-03 Thread Dave Watts
That worked! Thank you so much! Is it because both the program Webshot and ColdFusion were installed under my user account? It's possible, but it's also possible that it was something not quite the same, but somewhat similar. I realize that's not a very satisfactory explanation, but I'd need

CF8 cfexecute Problem

2011-08-02 Thread Richard Steele
I can run a screen capture program executable from a Windows Server 2008 (32bit) cmd line and it captures a flash website fine. However, when I try this from cfexecute, it says no flash player is installed. Latest Flash Player has been installed for IE 8 32 bit. Please advise. Thanks.

Re: CF8 cfexecute Problem

2011-08-02 Thread Dave Watts
I can run a screen capture program executable from a Windows Server 2008 (32bit) cmd line and it captures a flash website fine. However, when I try this from cfexecute, it says no flash player is installed. Latest Flash Player has been installed for IE 8 32 bit. Please advise. Thanks. Try

Re: CF8 cfexecute Problem

2011-08-02 Thread Richard Steele
I can run a screen capture program executable from a Windows Server 2008 (32bit) cmd line and it captures a flash website fine. However, when I try this from cfexecute, it says no flash player is installed. Latest Flash Player has been installed for IE 8 32 bit. Please advise. Thanks.

Re: CF8 cfexecute Problem

2011-08-02 Thread Richard Steele
Hmmm... This runs via cfhttp url=http://www.myserverdev.com/ipi_grabber/get.cfm?w=#xWaitDocTime#s=#lcase(attributes.website)# result=grabResult /. So the caller is on a different server than the webshot program. ~| Order

Re: cfexecute problem...

2006-09-01 Thread Gabriel Bulfon
Of course if I stop the CF service I can delete the files mannually. Ok if I run mannually oracle) don't release the file handler. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date

Re: cfexecute problem...

2006-08-25 Thread Gabriel Bulfon
www.nylontechnology.com Some people call me the space cowboy. Some people call me the gangster of love. -Original Message- From: Gabriel Bulfon [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 23, 2006 3:03 PM To: CF-Talk Subject: Re: cfexecute problem... I don't know why, but the cfexecute

cfexecute problem...

2006-08-23 Thread Gabriel Bulfon
Hi, i am trying to generate dos command to export a oracle database...the commnad was fine, but i have a problem with a process. When execute the cfexecute all works fine but i can delete de files. If I see the task manager I see a System Iddle Process hang. I appreciate any help. -gabriel

Re: cfexecute problem...

2006-08-23 Thread Gabriel Bulfon
I don't know why, but the cfexecute or a command that i run (exp, from oracle) don't release the file handler. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by

RE: cfexecute problem...

2006-08-23 Thread Ben Nadel
people call me the space cowboy. Some people call me the gangster of love. -Original Message- From: Gabriel Bulfon [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 23, 2006 3:03 PM To: CF-Talk Subject: Re: cfexecute problem... I don't know why, but the cfexecute or a command that i run (exp

cfexecute problem...

2005-05-25 Thread Joe Joe
Hello.. I cant see what im doing wrong with this code, so any help would be much apreciated. I have an upload page, that allows people to upload an image. I then try to convert the image using an exe file to another format.. I have to use the exe because of the formats im changing to. if i

RE: cfexecute problem...

2005-05-25 Thread Ian Skinner
:[EMAIL PROTECTED] Sent: Wednesday, May 25, 2005 11:05 AM To: CF-Talk Subject: cfexecute problem... Hello.. I cant see what im doing wrong with this code, so any help would be much apreciated. I have an upload page, that allows people to upload an image. I

Re: cfexecute problem...

2005-05-25 Thread Joseph Brien
I have been trying different directories, I have them on C:\ - but i also have them in C:\mydocuments\uploads.. which is the http://localhost/upload/folder, Im going to try direct refrencing all the files now... cfexecute name = C:\My Documents\uploads\converter.exe arguments = -i 'C:\My

Re: cfexecute problem...

2005-05-25 Thread Joe Rinehart
Joe, You've got a tag nested inside your cfexecute tag. While this is valid: CftagCfchildtag/cftag This isn't: cftag cfchildtag This should help: cfexecute name = C:\converter.exe arguments = -i #serverFile# trynum2.gif /cfexecute -joe On 5/25/05, Joe Joe [EMAIL PROTECTED] wrote:

Re: cfexecute problem...

2005-05-25 Thread Joseph Brien
I tried to direct refernce them and took out all variable and used filenames, but now im getting a download box that opens up, It asks me to save document filetype document thats when its in the folder C:\My Documents\uploads, when its in the folder both the command prompt and thecfexecute

Re: cfexecute problem...

2005-05-25 Thread Joseph Brien
I fixed it, when i added timeout = 0 it started to work, I spent a whole day trying to get that to work... I really really cant believe it lol i think im going to go to bed and cry myself to sleep.. On 5/26/05, Joseph Brien [EMAIL PROTECTED] wrote: I tried to direct refernce them and took

RE: Help me figure out cfexecute problem?

2004-03-17 Thread Andrew Tyrone
probably aren't the issue since you are accessing a local drive. Andy -Original Message- From: Jamie Jackson [mailto:[EMAIL PROTECTED] Sent: Friday, March 12, 2004 5:49 PM To: CF-Talk Subject: Help me figure out cfexecute problem? I'm having a problem with one command when run with cfexecute

Re: Help me figure out cfexecute problem?

2004-03-15 Thread Jamie Jackson
On Fri, 12 Mar 2004 20:38:22 -0500, in cf-talk you wrote: I'm not sure how to debug this, as I'm pretty much out of ideas. I'd think it a permissions problem, if it weren't for the facts: AFAIK, all the necessary resources seem to be read/written/executed: 1. the command runs (but

RE: Help me figure out cfexecute problem?

2004-03-15 Thread Ian Skinner
One important thing to remember is that a run-direct command runs under you, the users authentication and permissions. The cfexecute commands runs under the authentication and permissions of the CF-service, usually very basic by default. HTH -- Ian Skinner Web Programmer

Help me figure out cfexecute problem?

2004-03-12 Thread Jamie Jackson
I'm having a problem with one command when run with cfexecute. The command runs to completion when run from the machine's command line, but when run from cfexecute the command runs for a little while, then hangs. Here is the command: cfexecute name=C:\CFusionMX\lib\_nti40\bin\vspider

RE: Help me figure out cfexecute problem?

2004-03-12 Thread Dave Watts
I'm not sure how to debug this, as I'm pretty much out of ideas. I'd think it a permissions problem, if it weren't for the facts: AFAIK, all the necessary resources seem to be read/written/executed: 1. the command runs (but halfway, then hangs) 2. the output file is written (halfway)

Re: cfexecute problem

2002-09-04 Thread Tim Painter
- Original Message - From: Web Master [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, September 03, 2002 9:17 PM Subject: Re: cfexecute problem I tried specifying the full path everywhere and I tried the cmd.exe option, still nothing. It may be a permissions issue

Re: cfexecute problem

2002-09-04 Thread Web Master
, you wrote: Does the CFEXECUTE tag have the proper permissions to execute the file? -Novak - Original Message - From: Web Master [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, September 03, 2002 2:50 PM Subject: RE: cfexecute problem Yes, I am specifying

RE: cfexecute problem

2002-09-04 Thread Ryan Kime
[mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 04, 2002 2:44 PM To: CF-Talk Subject: Re: cfexecute problem Is there a simple piece of test code someone can provide that is known to work? Perhaps executing a PING and logging it to a file (which I just tried and I cannot get that to work

RE: cfexecute problem (resolved)

2002-09-04 Thread Web Master
output file param if you want... -Original Message- From: Web Master [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 04, 2002 2:44 PM To: CF-Talk Subject: Re: cfexecute problem Is there a simple piece of test code someone can provide that is known to work? Perhaps executing a PING

cfexecute problem

2002-09-03 Thread Web Master
Well, since the Macromedia Forums seem to have been down all day, perhaps someone on the list can help me out... We're running Win2k and CF4.5 and I'm trying to use cfexecute to kick off an executable on the server. The problem is, it doesn't seem to do anything. Initially, I tried simply

RE: cfexecute problem

2002-09-03 Thread Ryan Kime
You are calling it from the absolute path (C:\path\to\executable.exe) right? -Original Message- From: Web Master [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 03, 2002 4:24 PM To: CF-Talk Subject: cfexecute problem Well, since the Macromedia Forums seem to have been down all day

RE: cfexecute problem

2002-09-03 Thread Web Master
PROTECTED]] Sent: Tuesday, September 03, 2002 4:24 PM To: CF-Talk Subject: cfexecute problem Well, since the Macromedia Forums seem to have been down all day, perhaps someone on the list can help me out... We're running Win2k and CF4.5 and I'm trying to use cfexecute to kick off an executable

RE: cfexecute problem

2002-09-03 Thread Ryan Kime
H.just for grins - if you are not using the timeout param, add that in with a reasonable number 0. -Original Message- From: Web Master [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 03, 2002 4:50 PM To: CF-Talk Subject: RE: cfexecute problem Yes, I am specifying

RE: cfexecute problem

2002-09-03 Thread Web Master
- From: Web Master [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 03, 2002 4:50 PM To: CF-Talk Subject: RE: cfexecute problem Yes, I am specifying the absolute path. Anything else results in an error. All I get is a completely blank browser. Mike At 9/3/2002 04:49 PM, you wrote: You

RE: cfexecute problem

2002-09-03 Thread Ryan Kime
Mike, Have any code we can look at? -Original Message- From: Web Master [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 03, 2002 5:07 PM To: CF-Talk Subject: RE: cfexecute problem I tried that as well. With a setting of 30, the form still returns immediately and with nothing

RE: cfexecute problem

2002-09-03 Thread Web Master
can look at? -Original Message- From: Web Master [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 03, 2002 5:07 PM To: CF-Talk Subject: RE: cfexecute problem I tried that as well. With a setting of 30, the form still returns immediately and with nothing displayed in the browser

Re: cfexecute problem

2002-09-03 Thread Jochem van Dieten
Web Master wrote: Well, it's pretty straightforward: cfexecute name=d:\webserver\client\engine\app.exe arguments=-run client_file.lis /cfexecute First try: cfexecute name=d:\webserver\client\engine\app.exe arguments=-run d:\webserver\client\engine\client_file.lis

Re: cfexecute problem

2002-09-03 Thread Alex
Use a fullpath in your *.BAT that cfexecute calls On Tue, 3 Sep 2002, Web Master wrote: Well, since the Macromedia Forums seem to have been down all day, perhaps someone on the list can help me out... We're running Win2k and CF4.5 and I'm trying to use cfexecute to kick off an executable

RE: cfexecute problem

2002-09-03 Thread Alex
it from the absolute path (C:\path\to\executable.exe) right? -Original Message- From: Web Master [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 03, 2002 4:24 PM To: CF-Talk Subject: cfexecute problem Well, since the Macromedia Forums seem to have been down all day, perhaps

Re: cfexecute problem

2002-09-03 Thread novakbanda
Does the CFEXECUTE tag have the proper permissions to execute the file? -Novak - Original Message - From: Web Master [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, September 03, 2002 2:50 PM Subject: RE: cfexecute problem Yes, I am specifying the absolute path

Re: cfexecute problem

2002-09-03 Thread Web Master
: cfexecute problem Yes, I am specifying the absolute path. Anything else results in an error. All I get is a completely blank browser. Mike At 9/3/2002 04:49 PM, you wrote: You are calling it from the absolute path (C:\path\to\executable.exe) right? -Original Message

CFEXECUTE Problem

2002-08-14 Thread Nick Bourgeois
I'm having a dilemma here. I'm trying to execute a file using CFEXECUTE, and it's not working. It's not throwing an error or anything (I even checked the logs) ... the file just won't execute. The server is using CF 4.5, and CFEXECUTE is enabled (I checked in CF Administrator). I tried a few

Re: CFEXECUTE Problem

2002-08-14 Thread Jochem van Dieten
Nick Bourgeois wrote: I'm having a dilemma here. I'm trying to execute a file using CFEXECUTE, and it's not working. It's not throwing an error or anything (I even checked the logs) ... the file just won't execute. The server is using CF 4.5, and CFEXECUTE is enabled (I checked in CF

Re: CFEXECUTE Problem

2002-08-14 Thread Lewis Sellers
On Wed, 14 Aug 2002 15:59:11 -0400, in cf-talk you wrote: Any ideas? Am I being too fague? Also, is there an alternative to CFEXECUTE (maybe a CFX tag) that I could use? Have you tried piping the output to a file like myexe.exe output.txt and seeing if it's saying anything? In any event a

Can anyone from Macromedia help me with cfexecute problem in CF 5

2001-12-06 Thread Robert Everland
Ok I have narrowed my problem with cfexecute down to one .exe program I use. It works fine in regular command prompt. The same exact program executes fine with cfexecute in CF 4.5 sp2. What is wrong with this. Why does it not work. I am pulling out my hair. I have to have this program

RE: Can anyone from Macromedia help me with cfexecute problem in CF 5

2001-12-06 Thread Jesse Noller
]] Sent: Thursday, December 06, 2001 1:01 PM To: CF-Talk Subject: Can anyone from Macromedia help me with cfexecute problem in CF 5 Ok I have narrowed my problem with cfexecute down to one .exe program I use. It works fine in regular command prompt. The same exact program executes