include_path不在httpd.conf中工作

我在httpd.conf中设置了一个虚拟主机。 虚拟主机正确parsing,但它忽略了我的php_includepath指令:

php_value include_path .:/var/www/xxx/library/ 

path工作,我复制并粘贴到一个LS。 通常情况下,我会追求更进一步的,但error_log显示我这个错误:

 PHP Fatal error: require_once(): Failed opening required 'api/v1/xxx.php' (include_path='.:/usr/share/pear:/usr/share/php') 

所以,它甚至不在正确的位置。 虚拟主机中的其他一切都很好,只是没有正确地使用PHP的include_path。 任何指针?