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

[REBOL] Re: Reading empty directories via FTP error

From: brett:codeconscious at: 12-Nov-2003 14:01

Hi Ashley
> No luck ;(
Bugger.
> Net-log: [ > none "226"] > Net-log: "226-66555.9 Mbytes free disk space" > >> write site/test/b2 "b" > URL Parse: userid password www.site.com.au none public_html/test/ b2 > ** User Error: Server error: FTP 226-File successfully transferred > ** Near: write site/test/b2 "b"
This snippet from your log looks to me like the Net-utils/confirm function has not been called with the multiline refinement. The only place I can find this happening is in the Close function of the FTP protocol - but I'm not sure it will help. Use a new session and paste this into your console, then retry your tests please. code: second get in system/schemes/ftp/handler 'close if equal? code/5/3 'net-utils/confirm [ head insert tail code/5/3 'multiline ] I'm not convinced that is the problem yet, but I have no other leads to follow right now.
> I'm wondering if it isn't just easier to [under Windows] do a "Map Network > Drive" and then work on the remote file systems directly. Anyone had any > luck with this?
I've no experience with that. Regards, Brett.