14,135 questions
0
votes
1
answer
36
views
Processing response from FTP download
I'm retrieving a file from a NAS via FTP in two ways:
with a .bat file where I have:
a) ftp -s:C:\TEMP\runTheDownload.txt (The script calls the code from the txt)
b) The .txt containing the following:...
0
votes
0
answers
14
views
When downloading files in getApplicationDocumentsDirectory(), they are not updated
In flutter, the db file is saved using the ftpConnect package and the path_provider package.
///download path
final Directory appDocumentsDir = await getApplicationDocumentsDirectory()..createSync(...
0
votes
1
answer
28
views
Simple file syncing client for WindowsCE [closed]
I need to write a file sync client for Windows CE (ver 7, ARM CPU).
I think the easiest way would be to use FTP, and check for new files on the server with a certain interval.
What is the easiest ...
-1
votes
0
answers
18
views
Is there a Rate Limit with FTP?
I'm coding a Chat-App right now that uses a Txt-File at a FTP Server for the chatlog. My question is, if FTP has a rate limit? Because I want to update the Chatlog as fast as possible in the client-...
0
votes
1
answer
26
views
tFTPConnection in talend open studio for data integration
i made an FTP connection to a remote ftp server it is working great but i have a problem with the password, on that machine the password changes every 2 weeks, is there a way to make an ftp connection ...
-2
votes
0
answers
16
views
FTP Folder Error because different network
I am having an error that I cannot access the FTP Server as shown in the picture, I have tried many different solutions but still cannot fix it, I just realized that the error is because of different ...
0
votes
0
answers
19
views
Setting security level in LFTP
I have a simple LFTP script that I used to run successfully on MacOsx:
set ssl:verify-certificate no
set ftp:ssl-auth TLS;
set ftp:ssl-force true;
set ftp:ssl-protect-data true;
set ftps:initial-prot &...
-1
votes
1
answer
78
views
Upload Google Sheet with App Script to FTP Server
I have a Google Sheet in my Google Drive, and I would like to know if there is a way to automatically upload this sheet to an FTP server (created with FileZilla) using a trigger.
0
votes
0
answers
32
views
Problem in TLS_FTPHandler fom pyftpdlib library
I am building a FTP server for a project and I want to use self signed certificate. For this I am using pyftpdlib library and importing TLS_FTPHandler from it. But VS code is not accepting it.
from ...
2
votes
1
answer
56
views
How to detect partial file transfer during FTP in python?
I'm using python's pyftpdlib for FTP server and ftplib for FTP client to facilitate file transfer. If the FTP connection closes before the entire file being shared, how to ensure that the FTP server ...
0
votes
0
answers
35
views
C# FTP conection to filezilla with disable plain unencrypted ftp [duplicate]
I am trying to change the way my application is connected to a filezilla server after some changed from a security point of view.
at first it was just added the enable FTP over SSL/TLS and this one is ...
0
votes
1
answer
71
views
Failure to correctly implement ftp_nlist in php
I use the ftp_nlist command to check if the folder doesn't exist, then create it with the ftp_mkdir command.
But the problem that is there and has recently been created for me is that sometimes ...
1
vote
2
answers
91
views
Is it possible to convert a C# model to XML and upload it to FTP server without local temp file?
I intend to use XmlSerializer and FluentFTP library to do that, but I can't be bothered to create any local temp XML file.
1
vote
0
answers
24
views
GitHub Actions FTP deploy only creates folders but doesn't upload files to cPanel
I'm using GitHub Actions to deploy my project to cPanel via FTP. However, the action only creates directories but doesn't upload any files. Here's the YAML configuration I'm using:
name: Deploy cpanel
...
0
votes
0
answers
32
views
Why Poll Enrich establishes new connection every time for the Camel SFTP?
Usecase:
Read the filename from topic
Retrieve the file from SFTP
Perform business logic
Sample Route
<from uri= "topic">
<pollEnrich>
<simple> sftp://user:pass?fileName=$...
0
votes
0
answers
62
views
Php Ftp File Transfer Failure writing to local file
Hi i using php language to transfer the csv file without creating to local using ftp method. i have the following code to send the csv file without creating local directory but it throws error ...
1
vote
2
answers
85
views
Newly uploaded files resulting in 404 error pages
We are experiencing a PDF file access issue on our WordPress site.
We have a folder located below the wwwroot directory named /policies:
/site/wwwroot/policies
Newly uploaded files in the /policies ...
0
votes
1
answer
70
views
IONOS ftp-login via PHP not working but the connection via FTP client like filezilla works?
We receive the message on all possible systems where we have stored FTP login data (shopify, xentral etc.):
Upload failed: FTP Error: 530 Login incorrect.
The access data is correct because the ...
-1
votes
1
answer
102
views
The underlying connection was closed: The server committed a protocol violation C#
I am trying to upload file from my local to FTP.. but getting following error and below is my code.
FTP connection is not SFTP, but it's like TLS1.2, any idea on this.
Error
System.Net.WebException: '...
0
votes
0
answers
40
views
FTP server - caged
I try to access the FTP server to get the CAGED files. But as an error, it shows that the files are corrupted. When I try to access the message “Corrupt input data”. So I'm unsure whether, in fact, ...
2
votes
1
answer
265
views
Android FTPS Upload Issue: '425 Unable to build data connection: TLS session of data connection not resumed' [duplicate]
In my android App, I'm trying to connect and upload files to my FTPS server (using port 21), which is essentially FTP with TLS. The server is a FileZilla Server that works perfectly fine with the ...
1
vote
1
answer
56
views
ftp nlst command runs in Python, but not in Windows Command Line
I have exposed an API via python that connects to my ftp server via ftplib:
from ftplib import FTP
@app.route('/api/ftp/list', methods=['GET'])
def ftp_list():
remote_dir = request.args.get('...
0
votes
0
answers
39
views
Auto-upload not opened files (but changed) in Visual Studio Code via ftp-sync
I'm working on a web project with VSC.
Local files are conected with the server via FTP-sync extension.
I'm using a Sass processor (Prepros) for working in CSS files.
When I save a file on working, ...
0
votes
1
answer
69
views
Powershell script with FIleZilla Pro CLI script embedded - how to properly iterate over local and remote paths
I have a scenario where I need to ftp thousands of files from a remote server to an intermediate - the intermediate has the ftp server installed - then from there to the destination server, Due to ...
0
votes
3
answers
107
views
How to Configure an FTP Server on EC2 to Directly Upload Files to S3?
I want to configure an FTP server on my EC2 instance so that it uploads files directly to S3. This means that every file I upload through the FTP server should automatically be sent to S3. How can I ...
0
votes
0
answers
36
views
Integrating FTP (Netconn API) with MQTT (Raw API) on LwIP in Bare-Metal Environment. Will that be possible without any conflicts or overheads?
I have been working with the LwIP in my embedded systems project. I have successfully implemented MQTT using the LwIP raw API in a bare-metal environment (NO_SYS = 1). Now, I need to integrate an FTP ...
0
votes
1
answer
110
views
Indy TIdFTP TSL1.2 Error 534 Protection level C not allowed
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 ...
0
votes
0
answers
12
views
getting the size of a directory in an FTP server [duplicate]
We are trying to download a large ( as it looks) dataset from an FTP server. To better manage data downloading and storing we need an approximate estimate of the dataset. I know this question has ...
0
votes
1
answer
25
views
Can an user go on the parent's folder from the domain pointing index?
I have a simple question that I don't know the answer and difficult to explain in a single title.
Imagine I have this server :
HOME
-- SITE1
---- CSS
------ style.css
---- IMG
-- SITE2
---- CSS
---- ...
0
votes
1
answer
69
views
Only one FTP query to get directory files and metadata
I'm working on a project that needs solid performance.
I need to analyze the contents of an FTP folder (and its sub-folders) with a single FTP request (to avoid making a call per file, which I could ...
-1
votes
1
answer
72
views
Using Twisted to implement implicit FTPS server
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 ...
0
votes
1
answer
114
views
I can't make changes in WordPress due to disk space limits and lack of FTP access
I am facing two issues related to a WordPress website hosted on SiteGround that I need to resolve:
1 Disk Space Limit Exceeded:
My client has reached the disk space limit on their SiteGround account. ...
0
votes
1
answer
59
views
How to get the FTP endpoint using Azure SDK in Blazor?
I am able to get the username and password, but I cannot get the HostName, which is the FTP endpoint visible on the Azure Portal.
var ftpPublishingData = await _webSite.GetPublishingCredentialsAsync(...
0
votes
1
answer
163
views
How do I perform a deployment via FTP to an Azure App Service?
I need to deploy an Azure App Service on the Azure portal and immediately perform an FTP upload using the FTP credentials. The zip file is located on my computer and needs to be uploaded to the FTP ...
0
votes
0
answers
82
views
FTP error: The connection with the server was reset
I'm using libcurl for FTP. My code seemed to be running fine and files were uploaded as I expected. But after a while, I found the connection went wrong and the error message is here.
FTP Folder Error:...
0
votes
0
answers
30
views
How to use ftp-simple in vs code?
This is my setting.
However, it only comes out to ftp open, and the file list is not imported.
In addition to setting the firewall, I tried setting ftp-simple: remote-workspace-load-all of vs code to ...
-1
votes
1
answer
77
views
Powershell: GetRequestStream
I try to upload file from local computer to ftp server. And i've got the error below:
Exception calling "GetRequestStream" with "0" argument(s): "The process cannot access the ...
0
votes
1
answer
74
views
How do I run an FTP script through Cypress? [closed]
I have an FTP script that needs to be run in the CMD for me to be able to add a file in the website, now my main work is to automate testcases using cypress and a testcase requires me to get a new ...
2
votes
1
answer
196
views
nlst times out while connecting FTPS server with Python
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 ...
0
votes
0
answers
80
views
cPanel files to VScode with FTP connection - search into files not working
I have took my cPanel files with FTP connection to VScode. All files are correctly loaded in and can be live added.
But there is an issue. When using CTRL + SHIFT + F or the search in VScode it doesn'...
-2
votes
1
answer
61
views
Allow ssh and ftp access to AWS EC2 ubuntu
Previously, I accessed /home/ubuntu through port 22 only with the ssh server key, and now an external partner company has to access FTP and work on /home/ubuntu.
So I created ftpuser account and ...
0
votes
0
answers
21
views
AH01071: PHP Warning: ftp_get(): PORT command is disabled in [duplicate]
I've run this script before on another server without problems but getting the following error in my logs:
AH01071: Got error 'PHP message: PHP Warning: ftp_get(): PORT command
is disabled in /path/...
0
votes
0
answers
52
views
Batch file download the most recent file from a FTP
Im using this script to try do download a file from a FTP but for some reason the name of the most recent .exe file is always empty. what im i missing ?
I tried direferent aproches but no result. did ...
-2
votes
1
answer
313
views
Set SSL on FTP Reverse Proxy
I have a FTP server (an old NAS) witch I cannot set a secure (SSL) channel
then I have another server (a backup server) witch store file only in a SFTP server.
So I have thought to create a reverse ...
0
votes
1
answer
50
views
FTP download of the latest files of the day [duplicate]
I need to connect to the FTP server in Python and download all the files that appeared only today from five different folders. Deleting files is not required.
I have just started to learn Python. We ...
1
vote
0
answers
39
views
In PHP. 1GP file takes one-hour time to download from FTP connection. How to increase the download speed?
I PHP fpt connection, I am trying to download one large file minimum 1GP from client server to my server but the downloading time taking minimum one-hour. But the server configuration and bandwidth ...
0
votes
0
answers
132
views
How to mount FTP folder as local disk
I'm trying to mount an FTP network folder as a local drive, similar to how the Google Drive application mounts its network drive
This is my first time working with FTP and network connections.
Reading ...
0
votes
0
answers
26
views
Trouble downloading SQLite files with FTPConnect in Flutter: Larger files incomplete
I'm encountering an issue with downloading SQLite database files using the FTPConnect library in Flutter. Specifically, when I attempt to download larger SQLite files (e.g., 4MB or 15MB), the ...
-1
votes
1
answer
114
views
How to skip winSCP asking for credentials in automated script?
I am new to using winSCP and Windows Task Scheduler. I am working on connecting to an external FTP server and copying its contents to a local directory on my PC.
When running my scheduled task, winSCP ...
0
votes
0
answers
48
views
Upload a file with ftp-simple in VS Code without going through selecting path manually in Command Palette
When executing
Save - Upload to FTP Server command VS Code starts asking where to save.
Can it "auto-select" the same folder on FTP Server as it is locally?
The problem is that when a ...