Re: FTP from iOS but getting tsneterr: (67) Access denied: 530

2017-05-28 Thread Richard Gaskin via use-livecode
Sannyasin Brahmanathaswami wrote: > If using > sftp://username:password@mydomain/sompath/somefile.ext > is the user name and password "sniffable" > > I am under the impression it is not as SFTP encrypts *before* sending > out the pipe. > > Is that understanding correct? Yes, that's the key benef

Re: FTP from iOS but getting tsneterr: (67) Access denied: 530

2017-05-27 Thread Sannyasin Brahmanathaswami via use-livecode
Richard Gaskin via use-livecode" wrote: ("ftp://FTPusername:ftppassw...@mydomain.on-rev.com/somepath/somefile.ext";) Would that be "ftps://..."? @ Charles I have the same (or perhaps similar) question. If using sftp://username:password@mydomain/sompath/somefile.ext is the user na

Re: FTP from iOS but getting tsneterr: (67) Access denied: 530

2017-05-25 Thread Charles Warwick via use-livecode
Hi John, Certain characters in usernames and passwords need to be URL encoded if you want to include them in a URL string. The @ character is one of them. Try something like his: put urlencode("autoim...@jdoe.on-rev.com") into tUser put urlencode("x") into tPass put the last image into UR

Re: FTP from iOS but getting tsneterr: (67) Access denied: 530

2017-05-25 Thread Richard Gaskin via use-livecode
Ralph DiMola wrote: > This works for me. > > put MyVar into url ("ftp://FTPusername:ftppassw...@mydomain.on-rev.com/somepath/somefile.ext";) Would that be "ftps://..."? -- Richard Gaskin Fourth World Systems Software Design and Development for the Desktop, Mobile, and the Web

RE: FTP from iOS but getting tsneterr: (67) Access denied: 530

2017-05-25 Thread Ralph DiMola via use-livecode
To: How to use LiveCode Cc: JOHN PATTEN Subject: FTP from iOS but getting tsneterr: (67) Access denied: 530 Hi All, I’m trying to ftp and image from the photo gallery on iOS to my on-rev account. I’m using the example: on mouseUp mobilepickphoto “library" --upload to FTP put the

FTP from iOS but getting tsneterr: (67) Access denied: 530

2017-05-25 Thread JOHN PATTEN via use-livecode
Hi All, I’m trying to ftp and image from the photo gallery on iOS to my on-rev account. I’m using the example: on mouseUp mobilepickphoto “library" --upload to FTP put the last image into url ("ftp://autoim...@jdoe.on-rev.com:xx...@jdoe.on-rev.com/autoimage/images/newimage.jpg”