If you want to overwrite certain settings for a particular directory, you can either use a .htaccess file or edit the apache config file. One of those changes, could be to alter the include_path for PHP for certain projects. Normally, you’d do this.
<Directory “/var/www/vhosts/xxx/httpdocs/“>
php_admin_value include_path “/var/www/
/:/usr/share/pear/:/tmp/”
You might run into some unexpected results, where the include_path isn’t actually changed, and the files you’re trying to include aren’t being included.
Try changing it to this.
<Directory “/var/www/vhosts/xxx/httpdocs/“>
php_value include_path “/var/www/
/:/usr/share/pear/:/tmp/”
There’s currently a known bug (#43677 [resolved]) that causes unexpected results when using the php_admin_value. A quick fix is changing this to php_value. Release 5.2.6 made a permanent fix for this, but not every commercial hoster or commercial controlpanel immediately updates to the latest release. If you see strange behaviour for PEAR packages that aren’t being included, despite setting the include_path correctly – this might be the reason.