• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Search results

  1. ChristophRo

    Question Access files in other domain with php

    The configured file/directory permissions and ownership prevent access to any path of other subscriptions with PHP. This is by design and "hardcoded" - so it's nothing you can change in the panel to make it work otherwise. You can manually change permissions on the filesystem, but don't be...
  2. ChristophRo

    Issue Problem with [Grafana] Update

    This problem got fixed by the Plesk team a few hours ago. Seems like they uploaded an incomplete/broken Grafana package into their Debian 11 repository yesterday, causing servers to fail when performing updates. I've got plenty of these mails as well from our servers.
  3. ChristophRo

    Question How to set up chroot for php-fpm?

    If you use any curl or fopen() to an https:// URL in your PHP scripts, these will most likely not work properly anymore. And nowadays any CMS does use that extensively for stuff like checking for and installing updates.
  4. ChristophRo

    Issue mariadb restarts every day at 8.30 and I don't know why -> (ERROR mysqld got signal 11)

    You can also try to dump/backup the mysql databases manually and see if you can reproduce the crash - and if yes, on which database it happens. The following script should be able to do that. (works out of the box on any Debian/Ubuntu system, though you may want to change the path for the dumps)...
  5. ChristophRo

    Issue mariadb restarts every day at 8.30 and I don't know why -> (ERROR mysqld got signal 11)

    could by a backup process that dumps mysql databases. i've seen such things to cause crashes of the mysql process, if there are some irregularities/corruptions in one of the databases.
  6. ChristophRo

    Question Installing PHP 7.2 on Plesk 18 & Ubuntu 22

    your -path /usr/bin/php-cgi -clipath /usr/bin/php is most likely wrong and these are other PHP version binaries
  7. ChristophRo

    Issue Dovecot too many SNI ssl certificate config files Max open files

    dovecot starts as root, thus it's likely it will retain these ulimit settings for the root user if not overwriten somewhere else
  8. ChristophRo

    Issue Dovecot too many SNI ssl certificate config files Max open files

    it should also show a value for LimitNOFILESoft that seems to be missing in your outputs. Can you please also run this command for once: cat /proc/`pgrep dovecot`/limits
  9. ChristophRo

    Issue Dovecot too many SNI ssl certificate config files Max open files

    what does this command show? systemctl show dovecot.service | grep -i limitno I would not be surprised if you are limited by systemd, because as very often with systemd, why bother with existing methods for such stuff, if systemd can reinvent the wheel and do the same things again and on...
  10. ChristophRo

    Question nginxDomainVirtualHost.php - configure ipv6

    It is ['ipAddress'] and if you select an IPv6 address for a website, it will automatically create an nginx server {} config with that selected IPv6 address Plesk does not use multiple listen statements in one server/virtualhost segment, but create a dedicated for every IP and port combination...
  11. ChristophRo

    Question Plesk Migrator does not delete non-exist file?

    uhhh, not using --delete is really not that great fortunately we were never affected by this, because we use custom scripts to re-sync the delta of web, email and databases. The Plesk Migrator is way to slow for servers with lots of sites and data. (we only use it for the initial sync and...
  12. ChristophRo

    Question Installing PHP 7.2 on Plesk 18 & Ubuntu 22

    I do not recommend to compile your own PHP as written in step 1 of https://support.plesk.com/hc/en-us/articles/115000497853 but use the PPA of Ondrej Sury to install older PHP versions: ***** The main PPA for supported PHP versions with many PECL ext... : Ondřej Surý This will keep your...
  13. ChristophRo

    Issue Plesk backup issue - taking too long to list files of a particular website

    you need to adjust this a bit more - this should work [ -x /usr/lib64/plesk-9.0/maxlifetime ] && [ -d /var/www/vhosts/[REDACTED]/whmcs-php-temp ] && /usr/lib64/plesk-9.0/php_session_cleaner /var/www/vhosts/[REDACTED]/whmcs-php-temp $(/usr/lib64/plesk-9.0/maxlifetime) there is no need and real...
  14. ChristophRo

    Issue Plesk backup issue - taking too long to list files of a particular website

    Cleaning of PHP session is a task that PHP can't do properly itself, so in most cases your OS automatically creates a cronjob for that, if you install PHP on your server. For example on Debian/Ubuntu it's /etc/cron.d/php that cleans up old session every 30 minutes. (automatically checks for...
  15. ChristophRo

    Issue Plesk backup issue - taking too long to list files of a particular website

    I see two possibilities: a) your exclusion of this directory does not work, i.e. is not configured properly (having played with excluded directories for the Plesk backup myself in the past, I can tell that this is a big PITA to get it right....and the documentation does not really help) b)...
  16. ChristophRo

    Issue Plesk backup issue - taking too long to list files of a particular website

    You sure about that? 70k files can be listed in a matter of 1-2 minute on even the slowest systems/harddisks I know and on faster servers this takes a second or less. For me it all sounds like you have millions of files (possibly all zero or very few byte in size) in at least one subdirectory of...
  17. ChristophRo

    Question Change default SMTP Port in Plesk

    a) this file does not look like a "default" main.cf configuration file on a Plesk server....or it's already very heavily customized. b) if you don't have a "relayhost =" line in that file, you can simply add it. Best you run "postconf -f | grep relayhost" first, before you make any changes, to...
  18. ChristophRo

    Question Change default SMTP Port in Plesk

    You need to make these changes manually via SSH See also https://support.plesk.com/hc/en-us/articles/360000947494-Is-it-possible-to-configure-relayhost-in-Plesk-with-Postfix- for some more information regarding this topic As like every MTA, the postfix/qmail service on your Plesk server...
  19. ChristophRo

    Question Change default SMTP Port in Plesk

    This is not possible as it's not the way "sending email" works What you are looking for is a relayhost configuration - with or without authentication, that depends on the server/smarthost you are using. i.e. something like this in /etc/postfix/main.cf smtp_sasl_auth_enable = yes...
  20. ChristophRo

    Issue Unable to use Plesk as SMTP server

    I've changed the following three params in /etc/postfix/main.cf The first two allow all TLS version supported by your postfix/openssl (except SSLv2 and SSLv3) and the third adjusts the available cipher suites. (without them, TLS 1.0 and TLS 1.1 do not work properly)...
Back
Top