• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

vhost.conf content not available

gijsbert

Basic Pleskian
For some domain I like to add /usr/share/pear to the include_path using a vhost.conf file.

1) First of all I make sure that no Include line is added in the last_httpd.conf:

grep -R .conf /var/www/vhosts/system/<domain>/conf/last_httpd.conf | grep Include ==> no output

2) Now I make a vhost.conf with the following content:

<Directory /var/www/vhosts/<domain>/httpdocs>
php_admin_value open_basedir "/var/www/vhosts/<domain>/httpdocs:/usr/share/pear:/tmp"
php_admin_value include_path ".:/usr/share/pear"
</Directory>

3) Reconfigure the domain using /usr/local/psa/admin/sbin/httpdmng --reconfigure-domain <domain>

If I now check the last_httpd.conf, the file is included:

grep -R .conf /var/www/vhosts/system/<domain>/conf/last_httpd.conf | grep Include ==> results in the correct entry: Include "/var/www/vhosts/system/<domain>/conf/vhost.conf"

But when I finally check the include_path and the open_basedir using a simple phpinfo() the entries of my vhost.conf do not appear. Am I doing something wrong here?

Kind regards,

Gijsbert
 
The custom php.ini configurations for each domain is located at:

For Plesk version 10.3 - 11.0:
/var/www/vhosts/DOMAIN.COM/etc/php.ini
For Plesk version 11.5:
/var/www/vhosts/system/DOMAIN.COM/etc/php.ini

Please see the documentation for it, depending on your version:


You might as well like the Parallels KB - article:

How do I enable custom php.ini for particular virtual host? ( KB - article 111 697 )
 
Back
Top