Questions tagged [ftp]

FTP, short for File Transfer Protocol, is a widely recognized protocol used to execute file operations, including the seamless transfer of files, within a TCP-based network like the Internet.

Using React-Native for FTP Integration

Has anyone successfully managed to download/upload files and folders from FTP servers using react native? I tried using the react-native-ftp package but it doesn't seem to work. If you've faced a similar scenario, please share your insights! ...

Encountered a delay during the transfer of a file from storage to an FTP server via a cloud-based function

I'm currently facing an issue while attempting to transfer a file from storage to an FTP server using a triggered Node.js function. Every time a specific file is uploaded to Firebase storage, it should automatically be transferred to the FTP server. To ac ...

What is preventing me from connecting to the BoM FTP server using PHP?

I'm facing difficulties in transferring an XML file from the Bureau of Meteorology (Australian) Public Access Data Feeds to my server using PHP. Despite being able to access the file through a browser, I am unable to interact with it using PHP through CURL ...

Error message in Node.js: Unable to establish connection to 127.0.0.1 on port 21 due to E

I am currently developing a simple application using node js, and I have encountered the following issue: Error: connect ECONNREFUSED 127.0.0.1:21 at Object exports._errnoException (util.js:1034:11) at exports _exceptionWithHostPort (util.js:1057: ...

Accessing data from FTP servers in WordPress

Searching for a solution to retrieve a file from an FTP server within a WordPress shortcode. Prior to working on the WP shortcode, I tested my code in a non-WP setting and it functioned correctly. After transferring the code into the WP shortcode, issues ...

What is the best scenario to implement ftp_pasv?

Is it necessary to set ftp_pasv to TRUE? Can this setting be enabled all the time or are there certain scenarios where it shouldn't be used? Additionally, is there a method to automatically determine if the server requires this setting? ...

Tips for transferring an image to an FTP server using an FTP client without using multipart uploading methods

I am currently working on uploading an image to my FTP server. I have successfully retrieved the image and obtained its location at file:///storage/sdcard0/Android/data/com.ionicframework.ftptranfer949961/cache/1467013143014.png The image file I need to s ...

Experience the magic of CSS Sprite once it's been successfully uploaded!

Visit the website for testing here Located at the bottom of the page are two images with hover effects - one labeled "Contact us" and the other "Jobs Available!" During local testing, these images are visible. However, once uploaded to a server, they dis ...

Exploring the TLS configuration for a Node.js FTP server project: ftp-srv package

I'm seeking to comprehend the accurate setup of TLS for my FTP project (typescript, nodejs) using this API: ftp-srv The documentation provided is quite basic. In one of the related github issues of the project, the author references his source code / ...

Guide on transferring CSV files from a different server to my server via an FTP connection

Hey there, I'm trying to figure out how to download CSV files from a folder located on the root directory of one server to another server using FTP connection. I've included the code below, but unfortunately it's not working for me. The FTP connection is ...

Incapable of establishing a connection between a server and FTP, along with PHP

I'm encountering an issue when trying to connect to an FTP server using our PHP code. Unfortunately, the ftp_connect() method only returns false without any error messages. This is my first time working with FTP in PHP and I could really use some guidanc ...

utilize PHP to compress an entire directory on a remote FTP server

I've been brainstorming ideas for creating an automated PHP transfer system between two servers. Server A only has FTP access, while server B has both FTP access and can run PHP scripts. My goal is to transfer all files from server A to a folder on s ...