[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Sheflug] Questions about ftp scp, and uploading files in general
Hi all,
I'm thinking about ways that allow users to upload files to their home
directories.
I'd rather not use ftp, as it seems to be best used for anonymous downloads
rather than authenticated uploading. So I get to thinking of scp and putty suite
for windows users.
What port does scp use ?
Are there any easy scripts out there to build web based secure uploads using
https and php (say).
Any suggestions ?
AED
--
The Philosophers have only interpreted the world, in various ways; the point,
however, is to change it.
-------------------------------------------------
E-mail provided by the BITPart
http://www.burngreave.net
___________________________________________________________________
Sheffield Linux User's Group -
http://www.sheflug.co.uk/mailfaq.html
GNU the choice of a complete generation.
#!/usr/bin/perl -w
# Strip all line of this form from html messages
# From: "French, Alastair" <Alastair.French [at] racalinst.co.uk>
while (<>){
$_=~s/(^.*:.*[ <])(\w.*)(@.*)/$1nospam$3/;
print unless /^Delivered-To:/i ;
}