• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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