• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Recent content by abashurov

  1. abashurov

    Issue Plesk is not detecting new extension updates

    It is possible to provide a custom extension catalog URL as a key property. Could you please check the `/usr/local/psa/admin/conf/customizations.conf` file as well?
  2. abashurov

    Important New Plesk webmail / SOGo Webmail extension

    It seems like there are issues with the mailname_create and mailname_update events in Plesk Obsidian 18.0.54.0 and above. SOGo extension relies heavily on these events to keep authorization table up-to-date. I've created an item for internal investigation and I hope that it gets a well-deserved...
  3. abashurov

    Question Add Location entry into NGINX Conf

    Hi! In case you'd like to add some sort of the custom configuration, you need to implement a corresponding hook and its methods, e.g.: <?php class Modules_ExampleModule_WebServer extends \pm_Hook_WebServer { public function getDomainNginxConfig(pm_Domain $domain) { return <<<EOL...
  4. abashurov

    Resolved rel="canonical" response header is lost between Apache and Nginx proxy

    I have tried setting a test instance in a similar fashion, however, it returned all the expected headers, as nginx does not hide them by default: https://github.com/nginx/nginx/blob/branches/stable-1.20/src/http/modules/ngx_http_proxy_module.c#L836. Do you have any custom nginx directives by...
  5. abashurov

    Issue Fail2ban banning the servers IP due to incorrect IP in apache logs

    We do pass client's IP address in proxied request in X-Forwarded-For header. Note that logging this IP address depends on Apache modules and logging configuration, so I'd recommend checking the following: That Apache reports mod_remoteip and log_config_module to be enabled in httpd -M | grep...
  6. abashurov

    Important New Plesk webmail / SOGo Webmail extension

    Gotcha; this causes non-detection of MySQL 8, because we rely on version_comment to contain either "mysql" or "percona", which is the case with MySQL 8 instances shipped by Oracle. For some reason, Debian maintainers (and Ubuntu maintainers kept this as-is) have decided to only keep the...
  7. abashurov

    Question How to set up chroot for php-fpm?

    The problem with $_SERVER variables in chrooted PHP-FPM is something that The PHP Group never tackled, probably, because the demand is low: PHP :: Bug #55322 :: Apache : TRANSLATED_PATH doesn't consider chroot and PHP :: Bug #62279 :: PHP-FPM chroot never-solved problems (extends #55322) are not...
  8. abashurov

    Important New Plesk webmail / SOGo Webmail extension

    We're looking into it; right now it seems like SOGo developers removed distro for Ubuntu 22.04, as there are no SOGo packages in nightly repo: ❯ curl -s https://packages.sogo.nu/nightly/5/ubuntu/dists/focal/focal/binary-amd64/Packages | grep -c sogo 15 ❯ curl -s...
  9. abashurov

    Resolved Failed to fetch: /smb/task/task-progress

    Seems to be related to a recent hotfix, PPP-59897. It used to hard-fail on routing step in case of a network failure, now it just pops up a toast. I suspect that either the connection to the server wasn't good enough, causing routing requests to fail, or a session/CSRF token has expired...
  10. abashurov

    Question VPS and IP question

    Hi! Is it possible that the packets sent to the new IP address still go through the virtual firewall and get routed through the old private IP address? In our current configuration templates on Linux we bind virtual hosts to their respective IP addresses, meaning that if we have received a...
  11. abashurov

    Resolved Problems to backup database with many tables

    There could also be a limit imposed by systemd on the unit itself. You may try checking it by running systemctl show mariadb --property=LimitNOFILE. In case that limit is applied, you can adjust it by editing the unit file as described here.
  12. abashurov

    Resolved Event Parameters are empty

    Seems like the documentation is a bit outdated in this regard. Here are the environment variables that are actually set up for this event handler by the underlying mechanism: NEW_SSL_CERTIFICATE_BINDING_TYPE=WEB OLD_SSL_CERTIFICATE_BINDING_TYPE=WEB OLD_DOMAIN_NAME=example.com...
  13. abashurov

    Question vhostmng-find processe consume CPU

    I can see on my server, that vhostmng-find is called in two different code locations, the first one being ext-composer (it looks for composer.json files) and the second one being Plesk Core (it looks for package.json files). Could you please enable debug, run the command plesk daily in console...
  14. abashurov

    Question How to enable PHP extensions for a specific domain that runs a specific PHP version - instead for global PHP version x.y?

    Hi You can do that by adding custom configuration to the php.ini used by the domain in Domains > example.com > PHP Settings > Additional configuration directives: extension = some_extension.so extension = other_extension.so extension = other_extension_1.so extension = other_extension_2.so...
  15. abashurov

    Issue Images not showing in Builder

    Hey, @Russell-SchoolsICT, It sounds like something (e.g. .htaccess rules) prevents displaying the images, if they are referenced on pages with different host than the one where they are deployed: this behavior does not reproduce on my test installation. Therefore, could you please open...
Back
Top