• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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