Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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.
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...
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
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');
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...