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

[REBOL] Re: ftp protocol

From: holger:rebol at: 25-Sep-2001 7:50

On Mon, Sep 24, 2001 at 07:12:49PM +0200, César Fraile wrote:
> hello all > > i have a problem related with ftp protocol in rebol. i´m trying to download > a file from sourceforge like this: > > read ftp://ftp3.sourceforge.net/pub/slackware/slackware-3.3/FILELIST.TXT > > and i get the following error: > > ** User Error: Server error: tcp 226 Quotas off > ** Near: read > ftp://ftp3.sourceforge.net/pub/slackware/slackware-3.3/FILELIST.TXT
The server is returning a multi-line response in a situation where REBOL does not expect it. We will fix this in the next release. For now please add the following call to user.r as a workaround. That should fix the problem. 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 -- Holger Kruse [holger--rebol--com]