I can't do an append to a text file on ftp site:
following the first line of asterisks is rebol
output. Following the second line is script.
In the rebol output I have inserted a comment
begining with NOTE:
*********************************************
>> do %test.r
Script: "Test FTP Access now" (28-Jan-2000)
ftp://usr:[EMAIL PROTECTED]/autoexec.bat
URL Parse: usr pass w3.interfacefire.com none none autoexec.bat
Net-log: ["Opening tcp for" FTP]
connecting to: w3.interfacefire.com
Net-log: [
none ["220" "230"]]
Net-log: "220-Serv-U FTP-Server v2.2 for WinSock ready..."
Net-log: "220 W3.Neptune.Com"
Net-log: [["USER" port/user] "331"]
Net-log: "331 User name OK, send password"
Net-log: [["PASS" port/pass] "230"]
Net-log: "230 User usr logged in" ;NOTE: my username is lower case, here
it
;printed out as upper case
Net-log: [
"TYPE I" "200"]
Net-log: "200 TYPE set to IMAGE (binary)"
Net-log: [["PORT" port/locals/active-check] "200"]
Net-log: "200 PORT Command OK"
Net-log: [["CWD ~"] "250"]
Net-log: "250 Directory changed to /c:/netscape/suitespot"
Net-log: [["CWD" either empty? port/path ["./"] [join "./" port/path]] "250"]
Net-log: "250 Directory changed to /c:/netscape/suitespot"
Net-log: [[join "LIST " port/target] ["150" "125"]]
Net-log: "150 Opening data connection"
Net-log: [
none "226"]
** Access Error: Network timeout.
** Where: read site
*********************************************
REBOL
[
Title: "Test FTP Access now"
Date: 28-Jan-2000
Author: "Tim Johnson"
Email: [EMAIL PROTECTED]
File: %Test.r
Purpose:{To test FTP Access}
]
site: ftp://tjohnson:[EMAIL PROTECTED]/autoexec.bat
print site
trace/net on
read site
*********************************************
At 12:34 PM 1/29/00 -0800, you wrote:
>Try doing a "trace/net on" and try it again. That will provide more useful
>information. If you post it, look for and edit out your user and password
>information. Hope this helps.
>
> - jim
>
>At 11:19 AM 1/29/00 -0900, you wrote:
>>The following code:
>>;;==============================================
>>site: ftp://usr:[EMAIL PROTECTED]/
>>read site
>>;;==============================================
>>generates the folowing error message from Rebol:
>>** Access Error: Network timeout.
>>** Where: read site
>>Of course, in my code, I have my correct login
>>in place of "usr" and my correct password in place
>>of "pass".
>>
>>In fact, if I substitute an incorrect login or
>>password, I do get a response from Rebol to that
>>effect.
>>
>>;;=================================================
>>Since this is a site that I routinely FTP to,
>>then I presume that I need to do something with
>>my Rebol network configuration, but I can't find
>>from the documentation where that information is.
>>
>>Can anyone help with this?
>>
>>Thanks
>>Tim
>
>
>