Page is a not externally linkable
victor - 9:26 am on Dec 27, 2002 (gmt 0)
My upload code looks something like this (stripped of all sorts of other issues like uploading a page only if it has changed): www.rebol.com -- Click download. All you need for this application is Rebol/Core.
I use the Rebol programming language.
List-of-files-to-upload: [%index.htm %welcome.htm %about.htm]
foreach file list-of-files-to-upload [
temp: read file
trim/lines temp
write join ftp://USERNAME:PASSWORD@MY-SITE.COM/ temp
]
And that's the whole program. Rebol is a 500k download, runs on almost any platform, takes maybe 30 seconds to install. Programs are interpreted -- no compiling. Give it a try: