• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Recent content by Cheshire

  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