Re: re. AOL FTP

2003-01-24 Thread Dave Cragg
At 1:58 pm -0800 21/1/03, Richard Gaskin wrote: Ian Gordon wrote: put ftp://; urlEncode(tUsername) : tPass @ tadd tpath into ftpPath put url (binfile: SrcFilename) into tData libUrlFtpUpload tData, ftpPath The specs I found online suggested encoding the user name and/or password,

Re: AOL FTP

2003-01-21 Thread J. Landman Gay
On 1/21/03 8:55 AM, Richard Gaskin wrote: So it seems that to login to AOL's FTP I'd need to do something like this: ftp://anonymous:[EMAIL PROTECTED]@members.aol.com But of course with two @s that won't work. :( How do I apply AOL's recommendation to libURL's login/password urls? Those

re. AOL FTP

2003-01-21 Thread Ian Gordon
Hi I had the same problem a few weeks ago and found the answer in the list somewhere.. Use urlencode ex. put ftp://; urlEncode(tUsername) : tPass @ tadd tpath into ftpPath put url (binfile: SrcFilename) into tData libUrlFtpUpload tData, ftpPath Works for me. hope it does for

Re: re. AOL FTP

2003-01-21 Thread Richard Gaskin
Ian Gordon wrote: put ftp://; urlEncode(tUsername) : tPass @ tadd tpath into ftpPath put url (binfile: SrcFilename) into tData libUrlFtpUpload tData, ftpPath The specs I found online suggested encoding the user name and/or password, but libURL still choked on it with an invalid url