Thank you for purchasing the FTP plugin for Droppy - Online file sharing, this documentation will help you installing, setting up the plugin.
To install the Droppy FTP plugin you will need to follow the steps below, or you can follow the instruction video below.
Installation video:
Continue to the section "Configuration" for more information about how to configure your FTP server.
To configure the FTP plugin you'll need to open up the settings.json file that's inside the droppy_ftp folder
The FTP plugin supports different types of FTP connections. You are able to connect to a FTP server by username and password, you're able to connect to a SFTP server using an username and password and you're able to a SFTP server using an username and a RSA Private key.
The settings.json file has the following options:
type: (Choose the connection type)
method: (Login using a key file or a username and password)
host: (The connection address to the FTP/SFTP server (can be IP or a domain address)).
port: (The port of the FTP/SFTP server)
username: (The username to login with)
password: (The password of the user (Only use when method is set to password))
passphrase: (The passphrase of the key file (Only use when method is set to key))
key: (The local path to the RSA key file)
remote_path: (The storage path on the FTP server)
{ "ftp": { "type" : "ftp", "method" : "password", "host" : "ftp.myhost.com", "port" : "21", "username" : "proxibolt", "password" : "myS3cretP@ssword", "passphrase" : "", "key" : "", "remote_path" : "uploaddir/" } }
SFTP connection using a RSA key file (secured with a passphrase), storing files in the home directory of the user
{ "ftp": { "type" : "sftp", "method" : "key", "host" : "server.mydomain.com", "port" : "22", "username" : "storageuser", "password" : "", "passphrase" : "mysecretpassphrase", "key" : "keys/rsa.pub", "remote_path" : "home/storageuser/" } }
If you need any help setting up your config then please feel free to contact us.
This will explain how the upload is going from a file on someone's computer to a file stored on the FTP server.
Troubleshooting some problems that can occur:
Q: When I try to download a file it says "We are currently processing your files, please be patient"
A: This is the process when the file on your server is uploading to the FTP server, it can take a moment sometimes, this also really depends on your server's internet connection and disk speed. Please contact us when this process takes longer than you think it should take.
Q: When I try to install the plugin it says "Upload failed"
A: It can be that the upload fails, I will suggest you to try it again. If this problem keeps occuring I will suggest to contact us.
Q: There is no "Plugins" tab in my admin panel
A: Please update to the latest version of Droppy, Contact us if this didn't worked.
V 1.0
- Intial release