我已经在许多服务器上安装了这个包,但我们现在有一个内部 ubuntu 服务器,我们正在尝试安装这个包。我们已经安装并安装了这个包,因为它确实显示了位于 usr/share/php/Services/W3C/ 中的所有文件但是当我们运行以下代码时。
require_once ('Services/W3C/HTMLValidator.php');
我们收到以下错误。
Warning: require_once(Services/W3C/HTMLValidator.php): failed to open stream: No such
file or directory in /var/www/test.php on line 4 Fatal error: require_once(): Failed
opening required 'Services/W3C/HTMLValidator.php'
(include_path='.:/usr/share/php:/usr/share/php/pear')
in /var/www/test.php on line 4
有谁知道可能导致此错误的原因。
编辑:经过仔细测试后,我发现我无法从包含路径中包含任何内容,例如 HTTP/Request2.php 也不可用。
我目前正在寻找是否可能有 php 设置或限制阻止这种情况,但我愿意接受任何建议。