`require`在php中不起作用

`require`在php中不起作用,php,google-app-engine,google-cloud-platform,Php,Google App Engine,Google Cloud Platform,这就是我现在正在获取的错误 PHP Fatal error: require(): Failed opening required '/base/data/home/apps/s~civic-planet-191520/20180221t115719.407805658953142647/web-service/web/../vendor/autoload.php' (include_path='.;/base/data/home/apps/s~civic-planet-191520/20180

这就是我现在正在获取的错误

PHP Fatal error: require(): Failed opening required '/base/data/home/apps/s~civic-planet-191520/20180221t115719.407805658953142647/web-service/web/../vendor/autoload.php' (include_path='.;/base/data/home/apps/s~civic-planet-191520/20180221t115719.407805658953142647/;/base/php_experiment_runtime/sdk')
我的
autoload.php
文件放在
vendor
目录中,我正在从
web/index.php
文件加载
autoload.php
文件<代码>网站和供应商目录都位于同一层。检查下面的屏幕截图

我使用这个php代码加载
autoload.php
文件

require __DIR__."/../vendor/autoload.php";
我也尝试过:

require(__DIR__. '/../vendor/autoload.php');
我的项目是加载在谷歌应用程序引擎


为依赖项管理全局安装Composer可执行文件
与中的操作相同。

尝试
require dirname(\uuu DIR\uuu)。“/vendor/autoload.php”@mulquin,好的,让我试着检查一下文件权限?“/vendor/autoload.php”可读吗?
php致命错误:require():无法打开required'/base/data/home/apps/s~civic-planet-191520/20180221T1121938.40780600838103175/web service/vendor/autoload.php'(include_path=';/base/data/home/apps/s~civic-planet-191520/201802211938.40780600838103175/;/base/php_()((())()))在第11行的/base/data/home/apps/s~civic-planet-191520/20180221121938.40780600838103175/web-service/web/index.php中
@mulquin@Datz,还需要在谷歌应用程序引擎中授予权限吗?是的,那么我应该如何检查它以及如何更改它?