• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Search results

  1. KarelB

    Resolved 4.4.2 Mailbox full but the Mailbox is not full

    Please don't give people advice like that. That will turn off quota's for all mailboxes on the server, which is not at all the right fix for this problem.
  2. KarelB

    Resolved 4.4.2 Mailbox full but the Mailbox is not full

    Michael, did you manage to solve this issue? I'm having the same problem with 12.5 and a mailbox being full while it's only for about 40% used.
  3. KarelB

    Patching Plesk 12.5 for weak DH

    This script does not work anymore for Plesk 12.5: http://kb.odin.com/en/125741 Is there a new version available? I'm a bit disappointed though that Plesk 12.5 didn't come standard with SSLv2 and SSLv3 disabled and the stronger DH key as suggested in the LOGJAM prevention sites.
  4. KarelB

    Multiple PHP Versions in Plesk 12.0 Out of the Box!

    I managed to install the devel tools manually, make sure you alter the url for your PHP version: rpm -Uhv http://autoinstall.plesk.com/PHP_5.6.9/dist-rpm-CentOS-6-x86_64/extra/plesk-php56-devel-5.6.9-centos6.15051813.x86_64.rpm After that I did the items from Igor's post again and then a...
  5. KarelB

    Multiple PHP Versions in Plesk 12.0 Out of the Box!

    Doesn't work, even when I also set the bin_dir config. There's also no phpize binary in the bin dir. I cannot install the plesk-php5.6-devel package either, it's just not available via yum installing.
  6. KarelB

    Multiple PHP Versions in Plesk 12.0 Out of the Box!

    Installing memcached via pecl doesn't work on my CentOS 6 server: [root@dev01 ~]# /opt/plesk/php/5.6/bin/pecl install memcached downloading memcached-2.2.0.tgz ... Starting to download memcached-2.2.0.tgz (70,449 bytes) .................done: 70,449 bytes 15 source files, building WARNING...
  7. KarelB

    Servershield errors and warnings in daily cron

    I get these emails every day, sometimes less warnings, but today there are plenty again: Subject: Cron <root@plesk01> /opt/psa/admin/bin/php -c '/opt/psa/admin/conf/php.ini' -dauto_prepend_file=sdk.php '/opt/psa/admin/plib/modules/servershield/scripts/aggregate-stats.php' PHP Notice...
  8. KarelB

    Prevent 502's for all sites when changing configs

    That looks awesome, thanks IgorG!
  9. KarelB

    Prevent 502's for all sites when changing configs

    I have a Plesk 12 server running that works great. But the problem is that whenever one of my shared hosting customers changes something out a domain or subdomain, all the other sites on the server give a 502 error. The reason why is clear to me: apache is reloading its config while nginx is...
  10. KarelB

    Error adding remote database server

    Thanks, running this query fixed it: update user set Grant_priv = 'Y' where user='admin';
  11. KarelB

    Error adding remote database server

    PRODUCT, VERSION, MICROUPDATE, OPERATING SYSTEM, ARCHITECTURE Plesk 11.5, 11.5.30 Update #44, last updated at April 30, 2014 03:25 AM, Centos 6.5 (Final), Linux 64bit PROBLEM DESCRIPTION When I try to add an extra MySQL server, running on a different server, I always get an error that the...
  12. KarelB

    Events and the order they are executed in

    The post you linked didn't help me, as you read in his 2nd post his problem was something else so he didn't go through with the event manager solution. But I did figure out what the problem was: the event wasn't being overwritten, my actions were taking place before the subdomain directory had...
  13. KarelB

    Events and the order they are executed in

    I can think of a 101 of those hacky solutions to work around this problem, but doing this with event hooks is the proper way to do it. And doing it the proper way is how I still prefer to do things as a programmer.
  14. KarelB

    Events and the order they are executed in

    I don't see how chattr could help me here. I've started looking where Plesk determines what the permissions of the subdomain folder should be, some template or config script? But I haven't found it so far.
  15. KarelB

    Events and the order they are executed in

    I made a small script that sets some permissions of a subdomain after being created: #!/bin/bash SUBSCRIPTION_DIR=/var/www/vhosts/${NEW_DOMAIN_NAME} SUBDOMAIN_DIR=$SUBSCRIPTION_DIR/${NEW_SUBDOMAIN_NAME}.${NEW_DOMAIN_NAME} # Fix permissions for the subscription basedir chmod 755...
Back
Top