Questions tagged [ftps]

An extension to the commonly used File Transfer Protocol (FTP) that adds support for the Transport Layer Security (TLS) and the Secure Sockets Layer (SSL) cryptographic protocols.

FTPS (also known as FTP-ES, FTP-SSL and FTP Secure) is an extension to the commonly used File Transfer Protocol (FTP) that adds support for the Transport Layer Security (TLS) and the Secure Sockets Layer (SSL) cryptographic protocols.

FTPS should not be confused with the SSH File Transfer Protocol (SFTP), an incompatible secure file transfer subsystem for the Secure Shell (SSH) protocol. It is also different from Secure FTP, the practice of tunneling FTP through an SSH connection. For SFTP, see the corresponding tag .

545 questions
0
votes
0 answers

FTPs For Each Command

I am using FTPs.exe (move it freely) and want to do the following: Move each file in a directory on the FTP site to a Downloaded Directory on the FTP site. Delete the file moved from the original pick up directory. I have constructed a do…
ricky89
  • 1,326
  • 6
  • 24
  • 37
0
votes
0 answers

Deciphering FTPS conversation

Here is a real life conversation (with IP, Hostname and ports masked) between the product I support and the z/OS based FTPS Server: Our product uses Java FTP libraries from EnterpriseDT ---> SYST 215 MVS z/OS 011100 is the operating system for…
Chaitanya MSV
  • 6,706
  • 12
  • 40
  • 46
0
votes
1 answer

FTPS upload with user isolation

I have setup FTPS with user isolation in IIS 7. I am trying to upload files via FtpWebRequest in .NET to a specific user's directory. I assumed that if I used the credentials for User1 to connect, it would automatically place the file in User1's…
0
votes
2 answers

FTP in iframe on HTTPS page

Evening all, I am having some difficulty with displaying my FTP connection content on a page with HTTPS encryption. It works on standard HTTP but not HTTPS. I am running Apache web server. I'm not fussed about the user being able to see the FTP…
0
votes
1 answer

Connecting to FTPS over PHP

I am currently working on a project that involves connecting to the clients FTPS server and downloading a file that they are updating automatically with the data we require. I am wanting to access this server via PHP so I can automate it. The issue…
TeeJayEss
  • 151
  • 1
  • 12
0
votes
1 answer

Java ftps connection, TrustManager explaination (using filezilla server)

I have written a program (obviously COPIED from the net, and modified it little according to my needs!) for file download/upload using apache ftp api and by creating a local server using Filezilla server. Everything is working FINE. The problem is I…
OnePunchMan
  • 720
  • 15
  • 33
0
votes
1 answer

How can I delete a file from an ftp server using a java program that are N weeks old

Our server is Unix server. Using jdk 1.7 and I am looking for a solution to delete files on the ftp server that are N weeks old. Found Apache FTPClient example but this not using date to delete files: FTPClient client = new…
VictorGram
  • 2,521
  • 7
  • 48
  • 82
0
votes
1 answer

Does Windows.Networking.BackgroundTransfer support FTPS?

I see that Windows.Networking.BackgroundTransfer does support FTP: ftp://user:password@server/file.txt But does it support FTPS?
Jerry Nixon
  • 31,313
  • 14
  • 117
  • 233
0
votes
2 answers

upload files to an FTPS server

I am trying to upload files to an FTP server (FTPS). Running the following code produces the exception: The remote certificate is invalid according to the validation procedure. The code: static void Main(string[] args) { FTPFactory ftp =…
David Munsa
  • 885
  • 1
  • 16
  • 30
0
votes
1 answer

ftps module connects but hangs up

I'm using the ftps module and I've got lftp installed on Cygwin. I'm having trouble because my node js app looks like it's connecting fine but none of my commands are running. The documentation for the module isn't very detailed so I've just been…
user
  • 715
  • 4
  • 13
  • 32
0
votes
2 answers

Wordpress: Installing Plugin error -> Could not create directory

this has been asked again and again, but none of the solutions I found actually works for me. I'm testing a new server (Ubuntu server 14.04) and have gone through the whole installation process of the various required software. So far I can access…
0
votes
1 answer

Hashed password causes FTP Upload problems

I have an Android Application which uploads data to an FTP(S) Server. Everything works fine until I hash my passwords. The strange thing is that login/upload and disconnect to the server seems to work, but my FTP shows no new data. Heres the code…
Markus
  • 1,565
  • 6
  • 26
  • 57
0
votes
1 answer

How to replace a non routable IP address with server address on ftplib

I'm trying to use ftplib.FTP_TLS, but I can't list the directories. Everything is OK with Filezilla, but when I'm on iPython, it fails. import ftplib from django.conf import settings # just a config file client =…
tominardi
  • 423
  • 4
  • 7
0
votes
0 answers

FTP using Explicit SSL/TLS on iOS

I am developing an iPhone app. In which I have to upload Image on FTP server. For this, I have to use (iOS) FTP using Explicit SSL/TLS . I have searched a lot and found Chilkat library. There are no questions related to Chilkat Library on Stack…
Sudha Tiwari
  • 2,499
  • 26
  • 50
0
votes
1 answer

Chunk Download is Possible in Android FTP?

I am Using FTPS and downloading Files into the device. All this is working good and now my Challenge is to divide the file into equal sized chunks and then proceed the download. If the file size is 50MB then i can divide it as 10MB x 5 equal sized…
Anand Asir
  • 309
  • 3
  • 13