How to use 'put URL ftp://... if username contains @

2010-03-16 Thread runrev260805
Hi, how can i use the comand put URL FTP://username:passw...@... if the username already contains a @. I tried to put the username into a var, but that does not the trick. Is it even possible? Regards, Matthias ___ use-revolution mailing list

Re: How to use 'put URL ftp://... if username contains @

2010-03-16 Thread Andre Rombauts
how can i use the comand put URL FTP://username:passw...@... if the username already contains a @. I tried to put the username into a var, but that does not the trick. Strange to me that a name including a '@' is accepted as a valit FTP username. But perhaps you mean the username contains also

Re: How to use 'put URL ftp://... if username contains @

2010-03-16 Thread Björnke von Gierke
It's possible that the parts after the @ in the user name can be omitted. If not, try to urlencode the name, and/or the password before putting them into the url query string. On 16 Mar 2010, at 16:55, runrev260...@m-r-d.de wrote: Hi, how can i use the comand put URL

Re: How to use 'put URL ftp://... if username contains @

2010-03-16 Thread Mark Schonewille
Hi Matthias, Yes, this is possible and happens quite often. However, almost equally often you can replace @ with % or +. Try ftp://username+domain.com:passw...@ftp.domain.com . -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage:

Re: How to use 'put URL ftp://... if username contains @

2010-03-16 Thread Bill Marcy
There isn't a way to escape out a character? 2010/3/16 Björnke von Gierke b...@mac.com It's possible that the parts after the @ in the user name can be omitted. If not, try to urlencode the name, and/or the password before putting them into the url query string. On 16 Mar 2010, at 16:55,

Re: How to use 'put URL ftp://... if username contains @

2010-03-16 Thread Andre Garzia
replace @ with %40 :D On Tue, Mar 16, 2010 at 12:55 PM, runrev260...@m-r-d.de wrote: Hi, how can i use the comand put URL FTP://username:passw...@... if the username already contains a @. I tried to put the username into a var, but that does not the trick. Is it even possible?

Re: How to use 'put URL ftp://... if username contains @

2010-03-16 Thread Matthias Rebbe
Thanks to all who replied. In my case the username has to be usern...@domain.tld. A + or a % as a replacement are not accepted. But urlencode and of course Andre´s suggestion to use %40 did the trick. Regards, Matthias Am 16.03.2010 um 17:13 schrieb Andre Garzia: replace @ with %40 :D

Re: How to use 'put URL ftp://... if username contains @

2010-03-16 Thread Jim Ault
When using a server/host that handles multiple domains, many systems require the [user's account name @ the domain ] in order to validate the login, thus donaldd...@domaindisneyland.com:mickeymo...@domaindisneyland.com

Re: How to use 'put URL ftp://... if username contains @

2010-03-16 Thread Dave Cragg
On 16 Mar 2010, at 17:28, Matthias Rebbe wrote: Thanks to all who replied. In my case the username has to be usern...@domain.tld. A + or a % as a replacement are not accepted. But urlencode and of course Andre´s suggestion to use %40 did the trick. Just to confirm. libUrl always