• 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.

Plesk 11 ProFTPD defect

igraf

Regular Pleskian
Hello
I have problems since the upgrade of "plesk 10.4.4" to "plesk 11.0.9"
The "root" user is running properly.

For all other users of the break is from up-/download and the speed slow.

What can I do?



CentOS release 5.8 (Final)
Plesk 11.0.9 Update #4
psa-proftpd 1.3.4a-cos5.build110120606.19
 
I don't understand what you mean by root user is running properly. Are you connecting to your server using FTP with root user/password somehow? I don't like the sound of that.

But slow/broken uploads/downloads could be a firewall problem.

Try using Passive mode (PASSV) or, if that's what you are already using, try turning Passive Mode off.

If changing mode helps then the problem is almost certainly firewall-related.
 
Hello
Thank you for your message.
It is a temporary trouble of the provider!

Now everything is working fine ...
 
You can also tune your FTP by the instructions below

Increase the timeouts (happens when a user is uploading many files, it tends to timeout)

Code:
vim /etc/proftpd.conf

and add the following at the end of file just before [AuthGroupFile /etc/group] :

Code:
TimeoutStalled          600
TimeoutIdle             1200
TimeoutNoTransfer       900
TimeoutSession          3600
AllowStoreRestart       on
AllowRetrieveRestart    on
PassivePorts            1100 1600

Then we restart xinetd

Code:
/etc/init.d/xinetd restart
 
Back
Top