• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • 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. C

    Can't start PHP-FPM support for nginx

    You need to enable dotdeb repository. Please read this instruction.
  2. C

    Horde 5 - Displaying HTML Email

    in /usr/share/psa-horde/imp/config/mime_drivers.php set (by default this value is false) /* HTML driver settings */ 'html' => array( /* NOTE: Inline HTML display is turned OFF by default. */ 'inline' => true, 'handles' => array( 'text/html' ), PS...
  3. C

    Update php 5.3

    You can use this tutorial and add php 5.5
  4. C

    Cron command exceeds 980 symbols

    You can put this commands in some file and execute its by cron
  5. C

    Is /usr/local/psa/bin/admin broken?

    You could read this page and related
  6. C

    serving with gzip does not work correctly

    How you detect, that content is gziped ? Could you show output of curl -I domain and crul -I www.domain
  7. C

    AWStats: How to Disable Globally in Plesk 11

    I suggest use this: for i in `mysql -uadmin -p\`cat /etc/psa/.psa.shadow\` psa -Ns -e "select name from domains"`; do plesk bin domain --update $i -webstat none; done because webstatmng only delete config and does not disable awstat for domain
  8. C

    Is /usr/local/psa/bin/admin broken?

    This option change behaviour only for custom view. Documentation will be updated.
  9. C

    Multiple PHP Versions not real multiple

    Use this: './configure --prefix=/usr/local/php449 --with-mysql --with-mysql-sock' for mysql support. Note that php 4 has old mysql client and you should use old password for mysql users: mysql> SET PASSWORD FOR 'some_user'@'some_host' = OLD_PASSWORD('newpwd');
  10. C

    Multiple PHP Versions not real multiple

    try this: apt-get install gcc flex wget http://us1.php.net/distributions/php-4.4.9.tar.gz tar xfvz php-4.4.9.tar.gz cd php-4.4.9 ./configure --prefix=/usr/local/php449 make && make install cp php.ini-dist /usr/local/lib/php.ini plesk bin php_handler --add -displayname 4.4 -path...
  11. C

    Multiple PHP Versions not real multiple

    Hi! This is minimal instruction for adding php 4.4.9 to plesk apt-get install gcc flex wget http://us1.php.net/distributions/php-4.4.9.tar.gz tar xfvz php-4.4.9.tar.gz cd php-4.4.9 ./configure --prefix=/usr/local/php449 make && make install cp php.ini-dist /usr/local/lib/php.ini plesk...
Back
Top