Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
102 views

I have a script that I want to run daily via Cron that would first download files and upload files from a local directory to FTPS server. I have created this script: import ftplib import ssl import ...
Suleman Elahi's user avatar
0 votes
0 answers
79 views

I’m using libcurl in C++ to upload a file via FTPS. The upload completes successfully (all bytes sent), but the connection freezes, and the server returns: > 425 Data channel timed out due to not ...
Vlad Didyk's user avatar
2 votes
0 answers
97 views

STARTEDIT: The process below works and is the accepted answer. I don't know why but I can't reply with an answer, and I can only comment on this question, so I'm choosing to edit my initial question ...
Haskell McRavin's user avatar
0 votes
1 answer
90 views

am getting this error 8:51:19 AM | Trace @8F596749-638656982249418103 Error downloading or archiving file: EOF o...rred in violation of protocol (_ssl.c:2706), when am sending request to the az ...
zed drakstar's user avatar
1 vote
0 answers
162 views

I am trying to upload a file via ftps to a server by doing this: $connectionId = ftp_ssl_connect($server, 21, 15); if ($connectionId === false) { throw new Exception("Could not connect to ...
4thfloorstudios's user avatar
0 votes
1 answer
237 views

I am trying to manually deploy payloadcms to azure web app services. I have locally run "npm run build" and created the build and dist folders. I then ftps into our server and copy the build ...
Qiuzman's user avatar
  • 1,843
0 votes
1 answer
274 views

I have an older Delphi project where in we use the TIdFTP client. I have been unable to get it to work there so I have started a side project where I can test the component. I am also running a ...
user3082957's user avatar
-1 votes
1 answer
96 views

I am writing an FTP server using the Python framework Twisted. Twisted has its own plain FTP implementation - but it doesn't support FTPS. I've noticed that most clients connect and immediately issue ...
bontchev's user avatar
  • 578
2 votes
1 answer
292 views

I can login to with Total Commander to server: ftps://publishedprices.co.il username: "XXXX" password empty And with lftp -u XXXX: publishedprices.co.il But when I tried to login and get ...
python3.789's user avatar
0 votes
0 answers
470 views

We are unable to get TLS 1.3 to work with FTPS on IIS on a Windows Server 2022. FTPS on IIS has been working fine for many years, and it relies (to my knowledge) on the Windows Server's schannel for ...
Henrik Bo Christensen's user avatar
0 votes
2 answers
82 views

I have a requirement is to read file from a FTP remote directory insert payload values into database and then move file from remote directory /in to remote directory /archive of same FTP server. I am ...
riteshmaurya's user avatar
1 vote
1 answer
55 views

I was getting Unable to determine system type - response: 550 Permission denied error while trying to poll files from ftp remote server. Springboot version: 3.2.1 My FTPS session factory Java ...
riteshmaurya's user avatar
2 votes
1 answer
83 views

I am expecting my code to receive the file based on poller once it is created in remote directory then do a database insert and then move the file to another remote directory. So far file is polled ...
riteshmaurya's user avatar
1 vote
1 answer
191 views

This one is not making any sense to me. Apologies for my poor python, I'm relatively new to the language. The pertinent part of my program looks like: from ftplib import FTP, FTP_TLS ... try:...
Mark Hammack's user avatar
0 votes
0 answers
143 views

I'm in R trying to pull csv data from an FTP server which "Requires implicit FTP over TLS". With some help from this answer I was able to connect to the server using the following code: # ...
djbetancourt's user avatar
0 votes
1 answer
298 views

I'm in R trying to pull csv data from multiple FTP servers. So far, my code works fine in two of the servers and I'm able to gather the data I need, but a third one throws the folling error: Error in ...
djbetancourt's user avatar
0 votes
0 answers
164 views

I recently created an FTPS server in Java and now I want to connect to it. Firstly I create a keystore file using Powershell Terminal : keytool -genkey -alias mykeystore -keyalg RSA -keystore keystore....
FrenchCornichon's user avatar
0 votes
1 answer
565 views

I am trying to download a file to a device over FTPS. I am using curl (7.88.1, OpenSSL/1.1.1u) as the client on the remote machine and pyftpdlib (1.5.7) to implement the FTP server on the local ...
Blue_Wolf13's user avatar
0 votes
1 answer
110 views

We are able to connect to a server which is using explicit FTPS using curl with the following command: > curl --ssl --list-only --user USER:PASSWD ftp://ftp.COMPANY.com:port/public Yet this code ...
bpeikes's user avatar
  • 3,739
0 votes
0 answers
394 views

The following command works to upload a file to our FTPS service provider: curl --ftp-ssl -T test.txt ftp://username:[email protected]/public/test.txt I would like to achieve the same ...
Markus S.'s user avatar
  • 2,812
0 votes
1 answer
2k views

We went through couple of solutions provided on tranferring files using FTPS. They are working fine with lower versions of Java like Java 11 etc. But are facing the same "SSL peer shut down ...
Rajesh Garaga's user avatar
2 votes
0 answers
677 views

I am getting the below error when I tried to connect FTP server which is running in an open shift cluster. I want to upload the file to the FTP server with the below code. I have referred to the below ...
Chetan's user avatar
  • 63
-1 votes
1 answer
2k views

how can I connect to an FTPS server and download files in it? Currently I am using the following code to retrieve some files in FTPS Server built with Docker. import ftplib import os from dateutil ...
leop's user avatar
  • 51
0 votes
1 answer
316 views

I have following code: import pysftp user = ... password = ... host = ... port = 21 class FtpDirectory: def __init__(self): self.ftp = None def __enter__(self): self.ftp = ...
A. L's user avatar
  • 379
1 vote
1 answer
1k views

I am trying to download file from FTP server using wget: wget --debug --no-passive-ftp --ftp-user=user --ftp-password=password ftp://server/file.gz file.gz What I get is: 220 Private FTP server ...
Piotr's user avatar
  • 185
0 votes
2 answers
830 views

good evening! I am having some issues connecting to an external FTPS server using Airflow's FTPS Hook. Here's a condensed version of my function which runs in a python operator: def ...
Vitor Aranha's user avatar
0 votes
2 answers
2k views

I try to use ftp package to establish default ftps connection: c, err := ftp.Dial("some_srv:some_port", ftp.DialWithTLS(nil)) if err != nil { log.Fatal(err) } and get astonishing self-...
Dmitry's user avatar
  • 759
-1 votes
1 answer
372 views

I need to transfer an file created but I keep getting the following error: Warning: ftp_put(): Can't open data connection for transfer of "/server.txt" I can access the ftp via an ftp ...
Natalie Hedström's user avatar
1 vote
1 answer
297 views

I'm trying to setup my FTP in VSCode using the sftp extension but I can't get it to connect, it says it's timing out every time. The issue is that my SFTP config from sublime text has always worked on ...
Geoff_S's user avatar
  • 5,125
0 votes
0 answers
177 views

I'm try to upload file using FTPS. Currently I use the library org.apache.commons.net.ftp.FTPSClient; This is part of code that I use: FTPSClient ftpClient = new FTPSClient("SSL", true); ...
Oscar Mauricio Gomez Acevedo's user avatar
2 votes
1 answer
1k views

I have a PHP script that works when using ftp_connect, but when using ftp_ssl_connect it doesn't work. Does anyone know why? When running the script on a remote server that only requires ftp_connect, ...
PaulW32's user avatar
  • 63
2 votes
0 answers
333 views

I have a problem on a spring boot project I need to retrieve files periodically on a FTPs but spring can't list the files I have followed the updated documentation (https://docs.spring.io/spring-...
LazareC's user avatar
  • 21
1 vote
1 answer
1k views

IIS has an option for FTP with required SSL (FTPS) otherwise your credentials, including password, are sent in plain text over the network or to server. Can visual studio deploy via FTP with security ...
Qiuzman's user avatar
  • 1,843
0 votes
1 answer
1k views

I need the expert help. I have written the C# console base application. In which I have to upload the zip file to FTPS server. Every time I am getting the connection refuse error. But when I connect ...
skt's user avatar
  • 599
0 votes
0 answers
485 views

Try to upload a file to an IBM Mainframe using FtpWebRequest give the 227 Entering Passive Mode error, using WinSCP console works just fine. I have visited all possible posts here on StackOverflow ...
Albert Torres's user avatar
2 votes
1 answer
1k views

Got this error while running my script: ftplib.error_perm: 550 Operation not permitted ftpdownloader.py : import ftplib import threading import logging import os class Client: def __init__(self, ...
Bachir31's user avatar
0 votes
1 answer
105 views

I've installed wordpress local on my computer with xampp, it's working but now I need to transfer my wordpress.com on my wordpress local. I want to add an extension but it's asking me my FTP ...
Joanne 's user avatar
1 vote
1 answer
3k views

I would like help and or opinion on how to proceed with this Python. The idea is that it is started through an AWS Lambda trigger and takes the new event (file) from S3 and sends it to my sFTP server. ...
khaiolopes's user avatar
0 votes
1 answer
449 views

I'm trying to upload a txt file (2KB in size) using PHP cURL to Sharefile via implicit FTPS, however I'm receiving: Connection timed out after 30000 milliseconds Closing connection 0 My code is ...
Jack Booth's user avatar
0 votes
1 answer
258 views

I'm facing an issue when trying to store a file in an FTP server. When trying to upload a file to the FTP server, the file is created but its contents are not copied. Context We use the following ...
mint's user avatar
  • 242
0 votes
0 answers
820 views

I'm trying to fetch files from an FTP Server using implicit FTP over TLS. This works fine in Filezilla. However, following code in Python 3.9.5 from ftplib import FTP_TLS import ssl import sys, os ...
epieters's user avatar
  • 1,187
1 vote
0 answers
225 views

I am trying to use an ftps client with proxy. I am using this library by apache: org.apache.commons.net.ftp; The problem is, that it looks like when I set proxy to the ftps client, it is connecting ...
StackerSapper's user avatar
1 vote
1 answer
625 views

I'm uploading a file ftp and keep getting a "ssl.SSLEOFError: EOF occurred in violation of protocol (_ssl.c:2756)" error. class MyFTP_TLS(ftplib.FTP_TLS): """Explicit ...
Eric Dannewitz's user avatar
4 votes
0 answers
500 views

I have C# code that uploads a file to an FTP server. Now TLS 1.2 is used and I adapted the code for this, but there is still a problem with TLS session resumption. According to this link Microsoft ...
Bernard Wielfaert's user avatar
0 votes
1 answer
112 views

I'm trying to upload a file from IFormFile to FTPS using WebClient. private async Task SaveFileToFtp(IFormFile file) { WebRequest.RegisterPrefix("ftps", new FtpsWebRequestCreator()); ...
SamBerk's user avatar
  • 631
2 votes
0 answers
1k views

I'm triying upload a file with FTPS with FTPSClient, but for any reason it's not working. I'm doing the upload to the FPS Server as can see below: FTPSClient client = null; logger.info(&...
jahir noe's user avatar
1 vote
0 answers
266 views

I am trying to build a GitHub Action that, upon pushing website content on a private repository, deploys the content to a remote web hosting server, through FTP over SSL (the only option available) ...
aretor's user avatar
  • 2,569
0 votes
1 answer
2k views

I am doing some performance test to transfer large files (~ 4 GB) from FTPS to SFTP server. I did some research and tried python script to see if there is any performance improvement to get a file ...
Subhanan Ganguli's user avatar
0 votes
0 answers
144 views

I have a PHP script running on my EC2 instance which uses cURL to connect to a remote FTPS server on port 990. When I run the script in local or in my other production server, the script runs without ...
Eloy Ruiz's user avatar
  • 797
1 vote
1 answer
1k views

I have an issue while connecting to a FTPS server with TLS/SSL Implicit encryption via PROXY. I am following the custom Apache FTPS Client (commons-net-3.8.0) solution provided from Java FTPS client ...
Hijas Ahmed's user avatar

1
2 3 4 5
11