Re: CFFILE Issue

2013-03-07 Thread Bobby
I'd probably start by trying one of these instead just to see if it made a difference: ./pdf/voucher#user_id#.pdf Or #expandPath('./pdf/')# 'voucher#user_id#.pdf' On 3/7/13 3:41 PM, Bruce Sorge sor...@gmail.com wrote: I am having something strange going on today with my dev machine. I

Re: CFFILE Issue

2013-03-07 Thread Bruce Sorge
Yeah, I went the expand path route and pointed it to a pdf directory that was already accepting new vouchers and it works. I On Mar 7, 2013, at 4:05 PM, Bobby bo...@acoderslife.com wrote: I'd probably start by trying one of these instead just to see if it made a difference:

Re: CFFILE Issue

2013-03-07 Thread Dave Watts
I am having something strange going on today with my dev machine. I have an app that writes a PDF: cffile action=write file=pdf/Voucher#user_id#.pdf output=#Voucher# nameconflict=make unique It has been working great, but today when I ran it I was given an java.io error that a folder

Re: CFFILE Issue

2013-03-07 Thread Bruce Sorge
Hi Dave, On my dev machine it did not exist, but it worked, and it worked on the live server. The only real change I made was I created a new directory in the admin folder called pdf so that the new one's get generated there. I updated the permissions on my dev machine to read/write for the cf

Re: CFFile Issue

2004-11-05 Thread Thomas Chiverton
On Thursday 04 Nov 2004 16:27 pm, Mosh Teitelbaum wrote: I've never run across that problem but it may well be as you suggest... some sort of locking error. Solution, cflock it exclusivly and see what happens. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44 (0)1749 834900 email:

RE: CFFile Issue

2004-11-05 Thread Jeff Waris
Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Friday, November 05, 2004 6:10 AM To: CF-Talk Subject: Re: CFFile Issue On Thursday 04 Nov 2004 16:27 pm, Mosh Teitelbaum wrote: I've never run across that problem but it may well be as you suggest... some sort of locking

RE: CFFile Issue

2004-11-04 Thread Mosh Teitelbaum
Jeff Waris wrote: I loop that query to write each record out to a line in a text file. I use the code CFFILE ACTION=Append After about 70k it errors out. I get this off the cfcatch variables. Jeff: I've never run across that problem but it may well be as you suggest... some sort of locking

RE: Cffile issue...

2004-10-25 Thread Jeff Waris
No one with any ideas?? I'm still pretty much stumped over this one. -Original Message- From: Jeff Waris [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 20, 2004 2:17 PM To: CF-Talk Subject: Cffile issue... An error occurred when performing a file operation Append on file.

RE: Cffile issue...

2004-10-25 Thread Mark A Kruger
25, 2004 8:58 AM To: CF-Talk Subject: RE: Cffile issue... No one with any ideas?? I'm still pretty much stumped over this one. -Original Message- From: Jeff Waris [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 20, 2004 2:17 PM To: CF-Talk Subject: Cffile issue... An error

RE: Cffile issue...

2004-10-25 Thread Ewok
Just a thought, but check your disk quotas if there are any. -Original Message- From: Jeff Waris [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 9:58 AM To: CF-Talk Subject: RE: Cffile issue... No one with any ideas?? I'm still pretty much stumped over this one

Re: CFFile issue

2002-07-17 Thread S . Isaac Dealey
I'm displaying a list of photos for approval (the filenames are in a db and the actual photo is displayed by url where they reside on a remote server), and if files are disapproved they're put in a list then I'm accessing a script on the remote server (where the photos reside) via cfhttp and

RE: CFFILE Issue

2000-12-04 Thread Phoeun Pha
U could use CFFTP, but design it in a way that the interface makes it look like you're using CFFILE -Original Message- From: Terri Stocke [mailto:[EMAIL PROTECTED]] Sent: Monday, December 04, 2000 12:04 PM To: CF-Talk Subject: CFFILE Issue Hey all, I spoke with an Allaire regional

RE: CFFILE Issue

2000-12-04 Thread Dylan Bromby
Is this for a particular CF release? I use CFFILE all the time on 4.0.1 Ent ... 2 years now ... and haven't had those problems. -Original Message- From: Terri Stocke [mailto:[EMAIL PROTECTED]] Sent: Monday, December 04, 2000 10:04 AM To: CF-Talk Subject: CFFILE Issue Hey all, I spoke

Re: CFFILE Issue

2000-12-04 Thread Ryan
Where is the bug? 4.5.1 ? 4.5.1 SP1 ? 4.5.1 SP2 ? With SP2 I imagine but I wanted to make sure. I thought SP2 was still in beta but maybe its not... Thanks, Ryan At 18:04 12/4/00 -, you wrote: Hey all, I spoke with an Allaire regional tech rep last week who told me in no uncertain terms

RE: CFFILE Issue

2000-12-04 Thread Simon Horwith
the only work around I can think of, other than the use of Objects (COM, server side java, or CORBA) would be the use of CFHTTP to post the file and CFFTP for file manipulation. In terms of scalability, and general code re-use/maintenance purposes, this does not seem like a very good alternative

Re: CFFILE Issue

2000-12-04 Thread David Cummins
Hmmm... never heard of that one. Which version of CF? 4.5? Could you try downgrading? Our CF server doesn't seem to have that problem, and we're using 4.5. Possibly you could look at a CFX_FILE tag - I know of one which has the added bonus of better security, however it does not set all the

RE: CFFILE Issue

2000-12-04 Thread Andrew
Terri: I haven't personally run into any memory hogging problems with cffile but I've never been involved in a project where it is extensively used. A possible alternative for you could be to set up your server to receive ftp requests and use the cfftp tag instead. Andrew Hewitt Web

Re: CFFILE Issue

2000-12-04 Thread Billy Cravens
That seems a bit strange. I've seen no major announcement from Allaire, and this seems like a MAJOR issue. You could use a file upload COM object (the way you'd do it in ASP; go to any ASP site to find some). Built-in functionality is ColdFusion's strongest selling point; I really don't want

RE: CFFILE Issue

2000-12-04 Thread Craig Thomas
Try the CFFTP tag. I think it is more cumbersome for simpling uploading files, but it works. craig thomas: pk interactive nyc : www.pkinteractive.com : vox +1 212.273.9623 : fax +1 212.273.9642 -Original Message- From: Terri Stocke [mailto:[EMAIL

Re: CFFILE Issue

2000-12-04 Thread Billy Cravens
CFFTP only works to transfer files from server to server; you can't use CFFTP to transfer files from client to server (unless the client has an FTP server running, which doesn't really fit into the "browser file upload" paradigm). -- Billy Cravens [EMAIL PROTECTED] Phoeun Pha wrote: U

RE: CFFILE Issue

2000-12-04 Thread Dylan Bromby
Pha [mailto:[EMAIL PROTECTED]] Sent: Monday, December 04, 2000 11:38 AM To: CF-Talk Subject: RE: CFFILE Issue U could use CFFTP, but design it in a way that the interface makes it look like you're using CFFILE -Original Message- From: Terri Stocke [mailto:[EMAIL PROTECTED]] Sent

RE: CFFILE Issue

2000-12-04 Thread Evan Lavidor
, December 04, 2000 2:38 PM To: CF-Talk Subject: RE: CFFILE Issue U could use CFFTP, but design it in a way that the interface makes it look like you're using CFFILE -Original Message- From: Terri Stocke [mailto:[EMAIL PROTECTED]] Sent: Monday, December 04, 2000 12:04 PM To: CF-Talk

Re: CFFILE Issue

2000-12-04 Thread Terri Stocke
fully with your analogy, Billy. I am hoping that there is more to this story./P PTerri/P/DIV DIV/DIV DIV/DIVOriginal Message Follows DIV/DIVFrom: Billy Cravens [EMAIL PROTECTED] DIV/DIVReply-To: [EMAIL PROTECTED] DIV/DIVTo: CF-Talk [EMAIL PROTECTED] DIV/DIVSubject: Re: CFFILE Issue DIV

RE: CFFILE Issue

2000-12-04 Thread Shane Witbeck
:[EMAIL PROTECTED]] Sent: Monday, December 04, 2000 5:39 PM To: CF-Talk Subject: RE: CFFILE Issue Except, CFFTP won't let you upload files from the client to the CF server, unless they exist on another FTP server somewhere. CFFTP only lets the CF Server talk to FTP Servers, not to the client. Evan