Re: FTP Error - Solved

2011-08-01 Thread Bob Sneidar
That may be because the last character of a line in a list is a carriage return? I have never heard of this in any other posts. I don't think I have had any problems with getting a line from a list and comparing it to something else either. Doesn't make sense to me. Bob On Aug 1, 2011, at 3:

RE: FTP Error - Solved

2011-08-01 Thread JACK RARICK
I wanted to thank everyone who through out suggestions to my FTP issues. Here is what I learned. #1) Path names on servers, specifically my on-rev server, are very CaSe SeNsItIVe. I didn't know that. #2) I spent a lot of time tearing apart Andre's FTP Commander - and discovered that any time h

Re: FTP Error

2011-07-28 Thread Matthias Rebbe
t; Sent: Thursday, July 28, 2011 2:29 PM > To: How to use LiveCode > Subject: RE: FTP Error > > On 28.07.2011 at 14:02 Uhr -0400 JACK RARICK apparently wrote: >> >> RETR /public_ftp/Hartland.iMovieProject >> /Media/Clip 009.mov >> >> 550 Can

Re: FTP Error

2011-07-28 Thread stephen barncard
URLEncode On 28 July 2011 11:37, JACK RARICK wrote: > From Robert: > > There seem to be a space in the file name which terminates that path > prematurely, causing the file not found error, I believe. > > YES! There is a space - how do I get rid of it? > > > Jack RarickStephen Barncard > San Fran

Re: FTP Error

2011-07-28 Thread Bob Sneidar
ists.runrev.com > [use-livecode-boun...@lists.runrev.com] On Behalf Of Robert Brenstein > [r...@robelko.com] > Sent: Thursday, July 28, 2011 2:29 PM > To: How to use LiveCode > Subject: RE: FTP Error > > On 28.07.2011 at 14:02 Uhr -0400 JACK RARICK apparently wrote: >>

RE: FTP Error

2011-07-28 Thread JACK RARICK
Code Subject: RE: FTP Error On 28.07.2011 at 14:02 Uhr -0400 JACK RARICK apparently wrote: > >RETR /public_ftp/Hartland.iMovieProject >/Media/Clip 009.mov > >550 Can't open /public_ftp/Hartland.iMovieProject_/Media/Clip >009.mov_: N

RE: FTP Error

2011-07-28 Thread Robert Brenstein
On 28.07.2011 at 14:02 Uhr -0400 JACK RARICK apparently wrote: RETR /public_ftp/Hartland.iMovieProject /Media/Clip 009.mov 550 Can't open /public_ftp/Hartland.iMovieProject_/Media/Clip 009.mov_: No such file or directory There seem to be a space in the file name which terminates that path

Re: FTP Error

2011-07-28 Thread Andre Garzia
>From that log file, you are trying to reach a file that does not exist. I believe you are pointing to the wrong folder. It is probably not "/public_html" but "something/public_html"... On Thu, Jul 28, 2011 at 3:02 PM, JACK RARICK wrote: > Here is the contents of the log field. > THANKS! > > soc

RE: FTP Error

2011-07-28 Thread JACK RARICK
Here is the contents of the log field. THANKS! socket selected: 74.54.153.71:21|6973 220-- Welcome to Pure-FTPd [privsep] [TLS] -- 220-You are user number 3 of 50 allowed. 220-Local time is now 12:54. Server port: 21. 220-IPv6 connections are also welcome on this server. 220 Yo

Re: FTP Error

2011-07-28 Thread Andre Garzia
Jack, can you post the content of the log field here? cheers andre On Thu, Jul 28, 2011 at 2:16 PM, JACK RARICK wrote: > Andre! Thanks for the tip to use liburlsetlogfield! If anything I will > learn a lot more a lot faster. > > Here is my line of code: > put "ftp://"; & FTPUSER & ":" & FTPP

RE: FTP Error

2011-07-28 Thread JACK RARICK
Andre! Thanks for the tip to use liburlsetlogfield! If anything I will learn a lot more a lot faster. Here is my line of code: put "ftp://"; & FTPUSER & ":" & FTPPASS & "@" & "ftp.cva.on-rev.com/public_ftp/holtfootball"&"/"&gamefilm&"/Media/"&tFilename into xStr I am a football coach. (Ame

Re: FTP Error

2011-07-28 Thread Andre Garzia
Jack, create a field and use liburlsetlogfield this will log all the transactions so that you can see where the problem lies. My guess is that you are using a "/" in the front of your path, this will fail because there is not such thing as /public_html but there is /home//public_html... Try remo

Re: FTP Error

2011-07-28 Thread Keith Clarke
Jack, have you considered keeping the returned lists stored in variables or custom properties and just presenting them in fields for user selection? That way, you can ensure that the list items stay as plain text (as sometimes fields will 'interpret' and hide some characters). For debugging web

RE: FTP Error

2011-07-28 Thread JACK RARICK
Keith said: ...maybe try put urlencode(strFINAL) to manage those pesky non-text characters? Thank you - I did - and it didn't! Dang. Any chance it might be a DIRECTORY issue? Should I be writing this code for the public_ftp folder? I will try that. On 28 Jul 2011, at 17:09, JACK RARICK wrote:

Re: FTP Error

2011-07-28 Thread Keith Clarke
...maybe try put urlencode(strFINAL) to manage those pesky non-text characters? Best, Keith.. On 28 Jul 2011, at 17:09, JACK RARICK wrote: > I am using an on-rev server. I request the contents of the public_html > directory (FTP) - and I get it. I now have a list of directories inside of > m