Plesk 9 Linux, Acronis module bug

When you upgrade Plesk expect bugs… this one was slightly annoying but not critical.  Going to the modules area and clicking on the Acronis management module it would display a black page.  Plesk developers released a fix a few weeks after discovery:

URL:

  • http://forum.parallels.com/showthread.php?t=85995&highlight=Acronis+Module
  • ftp://download1.parallels.net/Plesk/Autoupdate/Unix/9.0/148887/plesk9_patch_148887.tar.gz

Please try the solution:
1. download plesk9_patch_148887.tar.gz with updated modules
2. extract archive

cd $psa_root
tar -zxvf $psa_root/plesk9_patch_148887.tar.gz

Changing the open_basedir with Plesk Linux

When needing to allow a less restrictive basedir setting in Plesk for a domain you could modify the sites vhost.conf file normally found or created in /var/www/vhosts/yourdomain.com/conf/ with something like:

<Directory /var/www/vhosts/yourdomain.com/httpdocs/>
php_admin_value open_basedir "/var/www/vhosts/yourdomain.com/httpdocs:/tmp:/php/includes"
</Directory>

Then run:

/usr/local/psa/admin/bin/websrvmng –reconfigure-vhost –vhost-name=yourdomain.com

Or to disable open_basedir you could put in:??

php_admin_value open_basedir none