sftp

SCP transfer a file from localhost to a sftp server through php script

Hi Trying to send a file to another server using scp.. cannot use sftp as it is not installed on my server so i am getting a function not found for ssh2_connect. So my only option as i can see it is scp. Now the problem come with i cannot include my password in the php scp script. ie: scp filename username:passwor@server:filename I...

Error connecting to linux server using batch file. Able to connect with Filezilla

I am trying to connect to a remote servre via FTP in my VB 6.0 application. I tried connecting to remote server using Inet but it gave status unknown error (code:120089). So I am trying to do this by batch file. I created a batch file as below:- open 192.168.1.3 22 root !@#%RedHat%)(* cd "/opt/test" put "C:\envars.exe" "envars....

How to edit FTP accounts in Jcraft SFTP plugin for Eclipse?

I've been using the jcraft Eclipse SFTP plugin for FTP manipulation for a few months. However I don't know how to delete an existing FTP account or edit details. If I misspell my username/password or I do change my password, my account stays the same forever. Where are these details saved and how can I change details? Also, I do have on...

Java Secure FTP Applet

Does everyone know if there's an example of code of an application similar to these one? http://www.jscape.com/sftpapplet/sftp_applet_demo.html It's an applet that allows to upload huge files into an FTP Active server via HTTP using a Java Applet. ...

Looking for java SFTP modern library, not jsch

Hi, The "jsch" based implementation works for me. But it looks not modern one due to using Vector (old style Java collection). I found that the other implementations are less popular and not documented. Can you recommend implementation of SFTP library that he/she has good experience with it. Thanks. ...

Set umask for a sftp account?

Hi, Could anyone tell me how to set the umaskfor a single sftp user? Worth mentioning is a IBM AIX... Adding umask 002 to that user's .profile didn't work... (the goal is that this user files are accesible to people from the same group). I've seen somehowto's around editing the sftpd configs, though I want to set it for one user only,...

how to copy folders using sftp

hi, I wanted to know if there is an option in SFTP by which i could copy a folder from remote machine to local machine. thanks ...

Deploy with capistrano through sftp (no ssh available)

I was wondering if it is possible to deploy a rail application to an host for which I only have sftp access. (No ssh access, unfortunately). I found this page, http://codesnippets.joyent.com/posts/show/1271 which it makes me think it could be done, although it really is not clear with me what I should do with such file, nor whether th...

JSch sftp Transfer Stripping Windows Line Endings

I think I understand the difference between ASCII mode and Binary mode on regular FTP transfers -- in Binary mode the file is copied exactly, and in ASCII mode the client may modify line endings (stripping the Carriage Return from Windows -> UNIX or adding it in the other direction). However, I thought that the SFTP protocol only support...