FTP
Getting Started with FTP
FTP modules let you monitor file changes in a selected folder, upload new files to the desired folder, and modify or delete existing files that are already in a folder.
Prerequisites for FTP
An FTP server or FTP hosting (for example GoDaddy web hosting).
Creating the FTP Connection
Connection name | Enter the name for your FTP connection. |
Host | Enter the FTP server hostname. E.g. |
Port | Enter the FTP server port number. E.g. |
User name | Enter your FTP account user name. |
Password | Enter your FTP account password. |
Use a secure connection (TLS) | Select if you want to use a secure connection. No The connection will not be secured. Explicit encryption or Implicit encryption FTPS connection. The connection will be secured using SSL. |
Reject unauthorized certificates | If this option is enabled, the FTP server certificate is verified. If the verification fails, the connection will not be created. To pass the verification, the certificate must meet one of the following criteria:
If this option is disabled, the FTP server certificate is not verified. We strongly advise against disabling the option as it renders the connection insecure and poses a serious security risk. |
Self-signed certificate | Click the Extract button to open the upload dialog. Upload the certificate to use the TLS with your self-signed certificate. Make does not retain or store any data (files, passwords) you provide. File and password are only used to extract the certificate. |
Did you know?
You can find predefined FTP app sample templates at www.make.com/en/templates/ftp
Triggers
Watch files
Monitors the file content of the selected folder. The trigger is executed when a new file is inserted into the specified folder.
Connection | Establish a connection to the FTP account. |
Folder | Select the folder you want to watch. Only one folder per scenario is allowed. Subfolders are ignored. To keep track of multiple folders, create an independent scenario for each of them. |
Maximum number of returned files | Set the maximum number of results that Make will work with during one cycle. If the value is set too high, the connection may be interrupted on the side of the given third-party service (timeout). Make has no influence on this. We recommend that you set a lower value and either define a higher value for the maximum number of cycles or run the scenario more frequently. |
Choose where to start
Set when do you want to start the FTP file monitoring from.
Actions
Upload a file
Uploads a file to the FTP server.
Connection | Establish a connection to the FTP account. |
Folder | Select the FTP folder you want to upload the file to. |
Source file | Select (or map) the file you want to upload to the FTP server. |
Append to an already existing file | If this option is enabled and the file already exists on the FTP server, its content will be appended. If not, the content of the file will be overwritten. |
Create folders if don't exist | If this option is enabled and the folder you have entered to the Folder field does not exist on the FTP server, the module will create the folder. |
Delete a file
Deletes a file from the specified folder.
Connection | Establish a connection to the FTP account. |
Folder | Select the FTP folder you want to delete a file from. |
File name | Enter the filename (including file name extension). E.g. |
Create a folder
Creates a new folder.
Make sure you have sufficient permissions to create a folder and/or the directory protection is disabled.
Connection | Establish a connection to the FTP account. |
Folder path | Select the FTP folder you want to create a folder at. |
New folder name | Enter the name for the new folder. |
Delete a folder
Deletes a folder.
Make sure you have sufficient permissions to delete a folder and/or the directory protection is disabled.
Connection | Establish a connection to the FTP account. |
Folder | Select the FTP folder you want to delete. |
Move a file or folder
Moves a file from one folder to another.
Connection | Establish a connection to the FTP account. |
Old file path | Enter the path you want to move the file from. For example |
New file path | Enter the path you want to move the file to. For example |
List of files/folders in a folder
Retrieves file and/or folder details.
Connection | Establish a connection to the FTP account. |
Folder | Select the FTP folder you want to search in. |
Show | Select whether you want to retrieve information about files or folders, or both. |
Search | Enter the search term to filter returned files/folders by. If no search term is entered all files and folders from the specified folder will be returned. |
Maximum number of returned files | Set the maximum number of retrieved files by this module. |
Get a file
Retrieves a file from the FTP server which can be further processed, e.g. attached to the email message.
Connection | Establish a connection to the FTP account. |
File path | Enter the path of the file you want to retrieve. |
The Example
The file is retrieved from the FTP server and attached to the Gmail email message.
Change permissions
Connection | Establish a connection to the FTP account. |
Change permission settings of | Select whether you want to change permissions of the file or the folder. |
File path | Enter the folder or file path. |
Permissions | Set the desired file/folder permissions. Use the chmod parameters. E.g. You can find more details on the chmod Man Page. |
Troubleshooting the FTP app
If you are experiencing issues with the FTP app either during the connection creation or during a module's operation, try to use one of the popular FTP clients (e.g. WinSCP) and try to perform the same action (e.g. create a connection, list files in a folder, etc.) with the FTP client. If you are experiencing the same issues also with the FTP client, the reason might be a misconfiguration of the FTP server.
Please note that there are two FTP modes: active and passive. As the Make FTP app requests the passive mode, the FTP server must support the passive mode in order an FTP session can be successfully established during the following four steps:
The Make server sends the
PASV
command to the FTP server on port 21 (or 990 if Use a secure connection (TLS): "Implicit encryption" option has been chosen in the connection setup). This port must be open on the FTP server's firewall.The FTP server should send
227: Entering Passive Mode (h1,h2,h3,h4,p1,p2)
in response. The response specifies:The IP address (h1, h2, h3, h4) the Make server should connect to. When the FTP server is behind a NAT, the FTP server needs to provide its external IP address. It is common that the FTP server is not configured properly and provides its internal IP address instead that cannot be connected to from the Make server, e.g.:
A random, high-numbered (ephemeral) port (p1, p2) that the Make server can connect to. This port must be open on the FTP server's firewall.
The Make server initiates a connection to the IP address and port specified in the response.
The FTP server responds with an
ACK
. The FTP session has now been established.