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...