• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • 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.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Search results

  1. ChristophRo

    Question How to setup Plesk on another volume?

    Linux does not (always) automatically detect size changes on the virtual disk, nor does it resize the partition. For the first step to happen, you need to either reboot the server, or execute "echo 1 > /sys/class/scsi_device/x:x:x:x/device/rescan" for the appropriate device on the command line...
  2. ChristophRo

    Resolved Ban access via the server IP address!

    What you are looking for can be found/configured on "General Settings" --> "Customize Plesk URL" Here you need to set it to "No custom URLs. Only https://<server-IP-or-hostname>:8443" After that, requests to the IP address will no long show the login page.
  3. ChristophRo

    Issue Got packet bigger than 'max_allowed_packet' bytes when dumping table

    We've had a similar (because you did not provide any details, I can only guess though) problem and the complete error message from the "failed" backup was: WARNING: (Database object 'mydomain_wordpressdb') Unable to make database dump. Error: Failed to exec mysqldump: Exit code: 3: mysqldump...
  4. ChristophRo

    Question TLS versions and ciphers by Mozilla per domain settings

    TSL/SSL version and ciphers are per IP/PORT combination. So you could use different settings for domains/virtual-hosts on different ip addresses and/or ports. Of course, the later is quite moot, as in general you are required to use port 443 anyhow. But if you have multiple ip addresses, then...
  5. ChristophRo

    Question TLS versions and ciphers by Mozilla per domain settings

    This cannot be done You ask why? because TLS version are determined between client and server, before the connection reaches the webserver. If you use different IP addresses for each domain/virtual-host, then you could do that, see also https://support.f5.com/csp/article/K84508595
  6. ChristophRo

    Question Outdated php version

    You may also wanna check if PHP 7.2 is enabled at Tools & Settings -> General Settings -> PHP Settings
  7. ChristophRo

    Question SSH Terminal

    Just let SSH run on port 22 and your custom port xxxx Then firewall port 22 so it's only available from localhost and you are fine
  8. ChristophRo

    Question max_execution_time not working

    Well, imagick does know multithreading (since v3.2) and you can change those limits. (PHP: Imagick::setResourceLimit - Manual) It's reasonable to assume that somehow the jpg conversion does only work singlethreaded while png does use more/many threads. (maybe more than two, but your server does...
  9. ChristophRo

    Question max_execution_time not working

    As far as I know, this max_execution_time value is computation time and if your task runs multithreaded on say two CPU cores, you can get the behavior you are seeing. The same thing can happen the other way around, when PHP scripts run way longer than this max_execution_time. This is because...
  10. ChristophRo

    Question How to downgrade MariaDB from 10.5.10 to 10.3.22 or higher

    Shopware is currently NOT compatible* with all the latest releases of: MariaDB 10.3, MariaDB 10.4, MariaDB 10.5, MySQL 8.0 (* due to some dumb table create statements in the installer) So, a simple downgrade to MariaDB 10.3 will not help here, as you most likely get v10.3.29 that way. It's...
  11. ChristophRo

    Question how i can Replace mariadb with mysql on Plesk / ubuntu 20.04

    better fix or update your software, in order to be compliant to newer MariaDB versions (possibly newer MySQL is also affected) see here: Workaround for MariaDB >= 10.2.7 compatibility by samuelvogel · Pull Request #1396 · shopware/shopware
  12. ChristophRo

    Issue Plesk Osidian Installation on Debian 10.9 creates MySQL/MariaDB-Root user root@localhost without password

    It's not a security risk, because this root user does use socket based auth, instead of a password - heck it's considered to be even more secure than using a password after all. This behavior is also the default for any Debian 9 or 10 you install MariaDB on, regardless of Plesk or not. It's...
  13. ChristophRo

    Question Multiple Plesk servers to the same Slave DNS servers

    just "pdnsutil delete-zone blaablaa.com" on the secondary(s) to delete/purge the zone After that the secondary(s) will accept this zone again from any "master"
  14. ChristophRo

    Question Multiple Plesk servers to the same Slave DNS servers

    We ourselves are using this principle of one (well two in fact, as we use three authoritative nameservers) slave server for many (50+ currently) master servers as well, so my 2¢ are: You can do that easily and out of the box with PowerDNS and it's "Supermaster" feature. PowerDNS does...
  15. ChristophRo

    Question Plesk migration with outdated PHP versions

    PHP 5.3 will not be available with CentOS 8.3 I think that using CloudLinux would be the only way to get PHP 5.3 in a somewhat "official" way. If you stick with plain CentOS you will need to compile PHP 5.3 on your own.
  16. ChristophRo

    Resolved Make global backups available for customers

    As far as I recall, this is only an issue with remote (FTP/SFTP) backups. If you perform a global backup to local storage, customers can then see and restore from that backup. (and of course they only see and have access to their own stuff)
  17. ChristophRo

    Question can't block *.php while blocking other extensions

    Using the Web Application Firewall (mod_security) 3.x would be the way to go. Works with nginx and is designed to prevent SQL injections and other attacks on a server level scale. But according to Plesk, this WAF 3.0 is very fresh and may not be ready for production yet. Though if you only...
  18. ChristophRo

    Question can't block *.php while blocking other extensions

    You can't (easily) nginx does not support a lot of the stuff on a per server level that you could do with apache2. And since you're now stuck with adding this to every single vhost, the only way is to modify the default template that Plesk uses to build the nginx configuration. These templates...
  19. ChristophRo

    Question can't block *.php while blocking other extensions

    .htaccess files are an Apache feature All requests served by nginx, will ignore any .htaccess directives you have If you enable the "Serve static files directly by nginx" option, your blocking will also no longer work for png and other image files.
  20. ChristophRo

    Question How to make plesk use Python 3 for fail2ban?

    Even if that is the case, you are still in the wrong place here. The fail2ban package is provided by your OS vendor and if this one does use python2, then you need to talk to CentOS, Ubuntu, Debian or whatever you are using. If you are bold, you can try to change the shebang line in the file...
Back
Top