How to enable resuming FTP uploads in Plesk

- by

Plesk uses ProFTP as the default FTP server. It has a handy feature that allows file uploads to resume or append should a connection be broken during transmission. This means that partially transferred data doesn’t have to be uploaded again, it can simply be added to – potentially saving a lot of time.

Although easy to activate, this feature is not enabled by default on Plesk installations for security reasons. Here’s how to make it happen:

Edit /etc/proftpd.conf and add the following few lines:

# allow resuming file uploads
AllowStoreRestart on
AllowOverwrite on

You may find the AllowOverwrite directive in there already, in which case replace it with the above block. For the changes to take effect, restart the xinetd service (of which proFTP is part):

service xinetd restart

Works on both CentOS 6 and CentOS 7.

Note that for this to work, it also needs to be enabled in your FTP client. In FileZilla it’s under Settings – Transfers – File Exists Action:

Screen-Shot-2015-04-09-at-12.40.26



If you enjoy my content, please consider supporting me on Ko-fi. In return you can browse this whole site without any pesky ads! More details here.

Leave a Comment!

This site uses Akismet to reduce spam. Learn how your comment data is processed.