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
John, This works for me. put MyVar into url ("ftp://FTPusername:ftppassw...@mydomain.on-rev.com/somepath/somefile.ext";) I looks like your using your email address for the username. Create an FTP account in cPanel FTP setup. Don't use the built in one or someone could sniff the password to yo