Re: [PHP] SSH file transfers

2001-01-23 Thread Jirka Kosek

Kyle Jerviss wrote:

 Yeek!  Not quite what I meant.  I don't think that web servers have any
 business being on windows boxes.  I was wondering if there were a way to
 upload using something like scp from a windows (or other) browser to a
 unix server.

There is a nice program WinSCP at http://winscp.vse.cz
It provides interface similar to Norton Commander, one panel is your
local disk, second remote directory accesed via scp.

-
  Jirka Kosek
  e-mail: [EMAIL PROTECTED]
  http://www.kosek.cz

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] SSH file transfers

2001-01-11 Thread Sam Leibowitz


To my knowledge, there's no way to make a browser do SCP without coming up
with a custom plugin, which isn't likely to be within the scope of stuff
you're willing to take on.  Fortunately, someone else has done it for you.

F-Secure SSH is an SSH terminal client that includes tunneling and file
transfer tools (SFTP and SCP). Unfortunately, it's US$150. Bleah.
http://www.f-secure.com

PuTTY and PSCP are free tools developed by the same author. PuTTY is also
fun to say if you're a Seinfeld fan.
http://www.chiark.greenend.org.uk/~sgtatham/putty/

There are a couple of other SCP tools out there for Windows (some of which
are even free!), but you can search for the links yourself at the usual
suspects' sites (download.com, zdnet.com, etc).

If you're actually trying to make PHP handle file uploads and downloads
securely, you're basically looking at HTTPS/SSL.

HTH,Sam


 Yeek!  Not quite what I meant.  I don't think that web servers have any
 business being on windows boxes.  I was wondering if there were a way to
 upload using something like scp from a windows (or other) browser to a
 unix server.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] SSH file transfers

2001-01-11 Thread Rouvas Stathis

Try pscp from putty :

http://www.chiark.greenend.org.uk/~sgtatham/putty/

-Stathis.



Kyle Jerviss wrote:
 
 Yeek!  Not quite what I meant.  I don't think that web servers have any
 business being on windows boxes.  I was wondering if there were a way to
 upload using something like scp from a windows (or other) browser to a
 unix server.
 
 bard wrote:
 
  the people who make putty (my favorite ssh client for windows) also make a command 
line scp program. this could be included as an exec() in a script I would think...
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  To contact the list administrators, e-mail: [EMAIL PROTECTED]
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] SSH file transfers

2001-01-10 Thread Alex Black

write a lib that can call scp :)

-alex


--
Alex Black, Head Monkey
[EMAIL PROTECTED]

The Turing Studio, Inc.
http://www.turingstudio.com

vox+510.666.0074
fax+510.666.0093

Saul Zaentz Film Center
2600 Tenth St Suite 433
Berkeley, CA 94710-2522




 From: [EMAIL PROTECTED] ("Nando2")
 Newsgroups: php.general
 Date: 5 Jan 2001 16:40:09 -0800
 Subject: [PHP] SSH file transfers
 
 Hello Everybody,
 
 I need to do upload and download with php but I didn't want to have a FTP
 server running on one of my linux servers since it is unsecure.
 
 Since all my servers have SSH running I would like to be able to offer a PHP
 download/ upload system that uses SSH instead of FTP.
 
 How can I upload / download files using SSH through PHP?
 
 Has anyone ever did it before?
 
 Thank you,
 
 Carlos Fernando.
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] SSH file transfers

2001-01-10 Thread Kyle Jerviss

Yeek!  Not quite what I meant.  I don't think that web servers have any
business being on windows boxes.  I was wondering if there were a way to
upload using something like scp from a windows (or other) browser to a
unix server.

bard wrote:
 
 the people who make putty (my favorite ssh client for windows) also make a command 
line scp program. this could be included as an exec() in a script I would think...
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]