我正在尝试使用以下方法包含文件:
require_once '../config/configVARS.php';
但我得到了错误:
Warning: require_once(../config/configVARS.php): failed to open stream: No such file or directory in ..../classes/FileHandler.php on line 2
Fatal error: require_once(): Failed opening required '../config/configVARS.php' (include_path='.:/opt/lampp/lib/php') in ..../classes/FileHandler.php on line 2
如果我尝试在同一个文件夹中包含一个文件,我没有任何错误(例如,当我将 configVARS 文件复制到同一个文件夹时,我可以包含它)。
我检查了权限,但不是这样(没有所有权)。
有任何想法吗?什么会导致它?