include_path 在 httpd.conf 中不起作用

include_path 在 httpd.conf 中不起作用

我在 httpd.conf 中设置了一个虚拟主机。虚拟主机可以正确解析,但它忽略了我的 php_include 路径指令:

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

该路径有效,我将其复制并粘贴到 ls 中。通常,我会进一步研究,但 error_log 显示了此错误:

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

所以,它甚至没有在正确的地方查找。vhost 中的其他一切都很好,只是没有正确使用 PHP include_path。有什么提示吗?

相关内容