• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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