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

Resolved I need to rewrite FTP (Proftpd) URLs. What are my options?

vspin

New Pleskian
I need to rewrite FTP (Proftpd) URLs, and Plesk does not support the Proftpd rewrite module. These seem to be my only options:

1. Remove Proftpd from Plesk which pretty much removes most of everything (dependent on Proftpd) on Plesk, and install a FTP server myself.

2. Remove Plesk all together, then install an FTP server, which according to a Plesk bug, I have to "redeploy a server from scratch" to remove Plesk.


I hope I'm just naive to the true power of Plesk. Is there anything else I can do?
 
FYI, I have old software which I must use that makes requests to the FTP server with backslashes instead of regular slashes, so I need to replace the backslashes with regular slashes.
 
As you can see, proftpd in Plesk is compiled without mor_rewrite module:

# /usr/sbin/proftpd -l
Compiled-in modules:
mod_core.c
mod_xfer.c
mod_rlimit.c
mod_auth_unix.c
mod_auth_file.c
mod_auth.c
mod_ls.c
mod_log.c
mod_site.c
mod_delay.c
mod_facts.c
mod_dso.c
mod_ident.c
mod_auth_pam.c
mod_ratio.c
mod_readme.c
mod_quotatab.c
mod_quotatab_file.c
mod_tls.c
mod_cap.c
mod_lang.c

As a possible solution, you can try to compile proftpd with mod_rewrite from the source. Just use "--with-shared=mod_rewrite" option for ./configure
I know, it is not a trivial task, but you could try at least.
 
Back
Top