Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!
Score of 2
1 answer
130 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 ...
Score of 0
0 answers
99 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 ...
Score of 2
1 answer
118 views

I'm trying to change a password on a z/OS mainframe that I make an FTPS connection to. Working with a legacy codebase and I'm trying to get rid of the exec calls to cURL. You'll notice all the ...
Score of 0
1 answer
120 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 ...
Score of 1
0 answers
199 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 ...
Score of 0
1 answer
280 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 ...
Score of 0
1 answer
309 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 ...
Score of -1
1 answer
115 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 ...
Score of 2
1 answer
321 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 ...
Score of 0
0 answers
568 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 ...
Score of 0
2 answers
90 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 ...
Score of 1
1 answer
60 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 ...
Score of 2
1 answer
90 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 ...
Score of 1
1 answer
218 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:...
Score of 0
0 answers
175 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: # ...

15 30 50 per page
1
2 3 4 5
37