Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

ftp connexion problems

 [1/5] from: gabillon::univ-pau::fr at: 17-Nov-2002 19:51


Hi all, I issue the following command: dir? ftp://mylogin:[mypasswd--ftpperso--free--fr]/ Sometimes it connects and I get the correct answer (true) But sometimes I get the following error ** Script Error: empty? expected series argument of type: series port ** Where: dir-read? ** Near: dir? ftp://mylogin:[mypasswd--ftpperso--free--fr]/ and sometimes it does not seem to connect but I get the following answer ** Script Error: ** User Error: Server error: tcp 200 PORT command successful ** Near: throw make error! info Please Help !!!!! Thanks in advance AG

 [2/5] from: brett:codeconscious at: 18-Nov-2002 12:33


What version of REBOL are you using?
> and sometimes it does not seem to connect but I get the following answer > > ** Script Error: ** User Error: Server error: tcp 200 PORT command
successful
> ** Near: throw make error! info
Brett.

 [3/5] from: alban:gabillon:univ-pau at: 18-Nov-2002 7:46


----- Original Message ----- From: "Brett Handley" <[brett--codeconscious--com]> To: <[rebol-list--rebol--com]> Sent: Monday, November 18, 2002 2:33 AM Subject: [REBOL] Re: ftp connexion problems
> What version of REBOL are you using?
the latest one 2.5.0.3.1

 [4/5] from: warp:reboot:ch at: 18-Nov-2002 18:21


try adding this to your user.r file: ;patch for ftpd change/only skip find pick find second get in system/schemes/ftp/handler 'open to-set-word 'parse-dir-list 4 'transfer-check -2 'net-utils/confirm/multiline ;and that is so to use open connection instead of new use [a] [ a: second get in system/schemes/ftp/handler 'open a: next a/connections/all change/only a to-paren compose [form (first a)] ] code taken from here: http://www.reboltech.com/library/html/Patches.html hope that helps 8) have a nice day Will [18.11.2002 7:46 "Alban Gabillon" [Alban--Gabillon--univ-pau--fr]]

 [5/5] from: gabillon:univ-pau at: 18-Nov-2002 22:39


Hi Will ! IT WORKS ! Thanks a lot !! But I wonder something. Why all these patches are not included in the downloadable rebol/core version ? AG