似乎我的服务器上的某些内容已更改,并且我在服务器上的每个网站上都看到包含失败的错误消息,这是一个示例:
Warning: require(xconstants_fa.php) [function.require]: failed to open stream: No such file or directory in /home/blahblah/public_html/fa/companies/ads/index.php on line 26
在第 26 行它说:
ini_set ("include_path", "../../includes/");
require "xconstants_fa.php";
所以很明显,我的服务器以某种方式停止使用“ini_set”功能(因为它之前工作正常),我查看了 php.ini disable_functions,什么都没有,我评论了所有禁用的功能和 open_basedir,不工作那里。
如果我:
ini_set ("include_path", "../../includes/") or die('ERROR HERE');
它ERROR HERE
在页面上回响
这里发生了什么事?我将不胜感激任何帮助。