Php require_once新文件没有这样的文件或目录

时间:2017-08-22 12:23:42

标签: php nginx

我在php中创建了一个我希望包含在项目中的文件。

我把require_once __DIR__.'/file_1.php'; 我收到错误:

FastCGI sent in stderr: "PHP message: PHP Warning: require_once(/var/www/my/main/file_1.php): failed to open stream: No such file or directory in /var/www/my/main/index.php

在我想要添加新文件之前,有一个require_once用于同一位置的另一个文件。

require_once __DIR__.'/file_that_was.php'; -> works
require_once __DIR__.'/file_1.php'; -> doesn't work

我的新文件与有效的文件具有相同的权限。

file_1.php没有任何错误。这只是一个简单的回声。

我错过了什么?

0 个答案:

没有答案