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

ftp protocol

 [1/2] from: cesar::usuarios::retecal::es at: 24-Sep-2001 19:12


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 if i try to download the file, actually viewing it with IE the file displays correctly. is this a problem related with rebol? how can i get the file downloaded correctly? thanks and sorry for this silly question cesar;

 [2/2] 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
<<quoted lines omitted: 4>>
> ** 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]

Notes
  • Quoted lines have been omitted from some messages.
    View the message alone to see the lines that have been omitted