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

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: > > nameconflict="make unique"> > > It has been working great, but today when I ran it I was given an java.io > error that a folder did not exist. > Funny thing was that it was looking at the

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 wrote: > > I'd probably start by trying one of these instead just to see if it made a > difference: > > ./pdf/voucher#user_id#.pdf >

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" wrote: > >I am having something strange going on today with my dev machine. I have >an app t

CFFILE Issue

2013-03-07 Thread Bruce Sorge
I am having something strange going on today with my dev machine. I have an app that writes a PDF: It has been working great, but today when I ran it I was given an java.io error that a folder did not exist. Funny thing was that it was looking at the following path: ColdFusion10\cfusion\run

Re: Variable or CFFILE issue

2005-08-19 Thread David Critchley
Thanks, I will have to try that when I get a chance to. >Might I direct you to the post about parsing the iTunes xml file as >that could be a solution to your problem. > >On 8/19/05, David Critchley <[EMAIL PROTECTED]> wrote: >> ~~~

Re: Variable or CFFILE issue

2005-08-19 Thread Marlon Moyer
om: David Critchley [mailto:[EMAIL PROTECTED] > > Sent: Friday, August 19, 2005 2:37 PM > > To: CF-Talk > > Subject: Variable or CFFILE issue > > > > > > I've tried to do a little digging, but with little success. Im > > looking for the Max Size of a fil

Re: Variable or CFFILE issue

2005-08-19 Thread David Critchley
ve > > -Original Message- > From: David Critchley [mailto:[EMAIL PROTECTED] > Sent: Friday, August 19, 2005 2:37 PM > To: CF-Talk > Subject: Variable or CFFILE issue > > > I've tried to do a little digging, but with little success. Im > looking for the Max

RE: Variable or CFFILE issue

2005-08-19 Thread Dave.Phillips
From: David Critchley [mailto:[EMAIL PROTECTED] Sent: Friday, August 19, 2005 2:37 PM To: CF-Talk Subject: Variable or CFFILE issue I've tried to do a little digging, but with little success. Im looking for the Max Size of a file that the CFFILE tag (Or could be the variable) can handle. We

Variable or CFFILE issue

2005-08-19 Thread David Critchley
I've tried to do a little digging, but with little success. Im looking for the Max Size of a file that the CFFILE tag (Or could be the variable) can handle. We regularily parse large files (larger than 10mb some upwards around 100mb). Currently we have been splitting the file into sections us

RE: CFFile Issue

2004-11-05 Thread Jeff Waris
Original 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

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: [E

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 lock

CFFile Issue

2004-11-04 Thread Jeff Waris
Something is not right... Has anyone else run across this... I have a query that I write the results to a file using CFFILE. Very simple, albeit its a large result set though. 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 70

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 thi

RE: Cffile issue...

2004-10-25 Thread Mark A Kruger
ctober 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 > Subje

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

Cffile issue...

2004-10-20 Thread Jeff Waris
"An error occurred when performing a file operation Append on file." Using CFMX 6.1, all I am doing is taking a query and writing it out to a file, line by line for each record. It writes about 70K and it errors out with that message at the top. Once errored, Coldfusion still has the file. The onl

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 cf

CFFile issue

2002-07-17 Thread Greg Luce
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 a

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.

Re: CFFILE Issue

2000-12-04 Thread Terri Stocke
analogy, Billy. I am hoping that there is more to this story. Terri Original Message Follows From: Billy Cravens <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: CF-Talk <[EMAIL PROTECTED]> Subject: Re: CFFILE Issue Date: Mon, 04 Dec 2000 14:17:06 -0600 That seems a bit s

RE: CFFILE Issue

2000-12-04 Thread Evan Lavidor
; Sent: Monday, 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:[EM

RE: CFFILE Issue

2000-12-04 Thread Dylan Bromby
hoeun 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 PROTEC

Re: CFFILE Issue

2000-12-04 Thread Billy Cravens
un Pha wrote: > > 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 > Subj

RE: CFFILE Issue

2000-12-04 Thread Craig Thomas
PROTECTED]] Sent: Monday, December 04, 2000 1:04 PM To: CF-Talk Subject: CFFILE Issue Hey all, I spoke with an Allaire regional tech rep last week who told me in no uncertain terms that we should NOT be using the CFFILE tag at all until the issue they have discovered with it has been resolved

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 Andrew
Hewitt Web Application Developer webworld studios, inc. www.wwstudios.com "I don't have a solution, but I admire your problem" -Original Message- From: Terri Stocke [mailto:[EMAIL PROTECTED]] Sent: Monday, December 04, 2000 1:04 PM To: CF-Talk Subject: CFFILE Issue Hey all,

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 attri

RE: CFFILE Issue

2000-12-04 Thread Simon Horwith
C 20036 > 202.797.6570 (direct line) > www.figleaf.com > -Original Message- From: Terri Stocke [mailto:[EMAIL PROTECTED]] Sent: Monday, December 04, 2000 1:04 PM To: CF-Talk Subject: CFFILE Issue Hey all, I spoke with an Allaire regional tech rep last week who told me in no uncertain

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 te

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

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 reg

CFFILE Issue

2000-12-04 Thread Terri Stocke
Hey all, I spoke with an Allaire regional tech rep last week who told me in no uncertain terms that we should NOT be using the CFFILE tag at all until the issue they have discovered with it has been resolved. Apparently there is a memory leak associated with the CFFILE tag that causes it to ho