• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

unable to set resume option while ftp using flashfxp

I

ilustrate

Guest
is there a reason why I'm unable to set the auto-resume if disconnected/interrupted feature in flashfxp when i try to upload a directory to a webuser account. i have used this feature before on another hosting plan with out a problem.
 
another way:

login via SSH as root

then open the file /etc/proftpd.include

(to open it just type:
Code:
nano -w /etc/proftpd.include
or
Code:
vi -w /etc/proftpd.include
)

that should be an empty file...

at this point you have to place inside it this line:
Code:
AllowStoreRestart on

then save and exit (ctrl + x if you use nano)

then type at SSH prompt:
Code:
/etc/rc.d/init.d/xinetd restart

your FTP service will be restarted and you can resume interrupted downloads (the ftp server now will accept the APPEND command) ;)

some other usefull tweaks to put inside your /etc/proftpd.include are also:

faster login:
Code:
UseReverseDNS off
IdentLookups off
(in theory that 2 ones had beed added in 7.5.3...)

and this one that force your ftp to show all the files included .htaccess and so on ;)
Code:
ListOptions "-a"
 
I've maded those steps. I've edited proftpd.include and inserted

AllowStoreRestart on
AllowRetrieveRestart on

I've restarted xinetd ...
and stills doesn't resume. (while, same client with other server does).


Any idea what could be the issue?

PS: Also tried to revert changes, and try editing proftpd.conf instead of proftpd.include. The same. No resume on uploads.
 
Back
Top