| View previous topic :: View next topic |
| Author |
Message |
blake Master
Joined: 23 Feb 2009 Posts: 201
|
Posted: Sat Sep 11, 2010 12:18 pm Post subject: sending files to a password protectedwebpage |
|
|
Hi
Have looked in the archives for a script to do the following
Take a file or files from a directory/subdirectorie within the bot and upload them to a diectory on my website so they can be viewed however it will need to be protected with a username password function that can be added to some sort of config within the bot or stored in the same directory on the website
Thanks _________________ Blake
UKEasyHosting UKStormWatch |
|
| Back to top |
|
 |
tomekk Master

Joined: 28 Nov 2008 Posts: 255 Location: Oswiecim / Poland
|
Posted: Sat Sep 11, 2010 1:03 pm Post subject: |
|
|
Upload files to site, via form?
I think will be better via FTP, you can use a module from tcllib.
| Code: | man n ftp
ftp(n) ftp client ftp(n)
_____________________________________________________________________________________________________
NAME
ftp - Client-side tcl implementation of the ftp protocol
SYNOPSIS
package require Tcl 8.2
package require ftp ?2.4.9?
::ftp::Open server user passwd ?options?
::ftp::Close handle
::ftp::Cd handle directory
::ftp::Pwd handle
[ ... ]
|
|
|
| Back to top |
|
 |
|