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

PLEASE HELP

 [1/2] from: n::francois::worldonline::fr at: 6-Jul-2001 17:37


I need to load an image in a script. It works when I do this on local : a: load-image %imageName.gif but when I do it on the server, It replies "access denied" ; so I must use the ftp url and it works : a: load ftp://login:[pass--ftpServer--com]/imageName.gif but the probleme is that the user can see my ftp-login and my ftp-pass ? How can I load the image whithout giving the login and pass ? Somebody told me about using "load-thru", but it does not work... Thank you for your help.....

 [2/2] from: jeff:rebol at: 6-Jul-2001 8:48


pass: request "What's your password?" load-image rejoin [ ftp://login: pass "@ftpServer.com/imageName.gif" ] Or, place the image on web server and use load-thru? Lots of free web space out there. -jeff