Re: URL Access Scripting
Re: URL Access Scripting
- Subject: Re: URL Access Scripting
- From: JollyRoger <email@hidden>
- Date: Fri, 07 Dec 2001 17:07:23 -0600
On 12/7/2001 1:02 PM, "Eric Schult" <email@hidden> wrote:
>
Because the anonymous ftp requires any email address for a password, the
>
presence of an "@" (at) symbol in the password seems to confuse the
>
following upload string:
>
>
upload localFile to "ftp://tjt:email@hidden@ftpads.journaltimes.com/" ...
>
>
I get an "error type -3170", which I presume means the server misinterpreted
>
the first "@" (at) symbol for the break between the userName:password and
>
the ftp address. The script works if I substitute the userName with an admin
>
user and put in my admin password instead of an email address.
>
>
Can anybody suggest a work-around? Thanx in advance for any help you can
>
provide. The script follows in its entirety.
(snip)
I'm confused as to why you are even including a name and password when the
server is running anonymous FTP. AFAIK, to log into an anonymous FTP
server, you use this type of URL:
ftp://ftpserver.com/
It's only when you *need* authentication that you use:
ftp://username:email@hidden
So just remove the username and password stuff from your script.