Google app engine google应用程序引擎laravel 4中的文件系统读/写

Google app engine google应用程序引擎laravel 4中的文件系统读/写,google-app-engine,laravel-4,Google App Engine,Laravel 4,我试图在谷歌存储路径设置我的laravel应用程序的路径。我正在读第6节,它描述了该做什么。我按照这一步骤,在 bootstrap/path.php我有这个 const BUCKET_NAME = 'fleetmanagement'; $storage_path = "gs://" . BUCKET_NAME . "/storage"; mkdir($storage_path); return array( 'app' => __DIR__ . '/../app', '

我试图在谷歌存储路径设置我的laravel应用程序的路径。我正在读第6节,它描述了该做什么。我按照这一步骤,在 bootstrap/path.php我有这个

const BUCKET_NAME = 'fleetmanagement';
$storage_path = "gs://" . BUCKET_NAME . "/storage";
mkdir($storage_path);
return array(

    'app' => __DIR__ . '/../app',

    'public' => __DIR__ . '/../public',

    'base' => __DIR__ . '/..',

    'storage' => $storage_path,
);
但在配置期间(用于编写器更新的cmd commad),它会显示以下警告:

警告:文件_exists():找不到包装器“gs”-您找到了吗 配置PHP时忘记启用它了吗?在里面 C:\national fleet\vendor\ajessup\gae laravel\s 第24行的rc\Ajessup\GaeLaravel\GaeApplication.php

{“error”:{“type”:“ErrorException”,“message”:“file\u put\u contents(/meta/services)。 json):无法打开流:没有此类文件或 目录“,”文件“:“C:\national fl eet\vendor\laravel\framework\src\lightlight\Filesystem\Filesystem.php ine“:71}

警告:mkdir():中没有此类文件或目录 第5行C:\national fleet\bootstrap\path.php


与GAE无关,但我收到了此错误,因为/app/storage中的某些文件夹丢失

为了修复错误,我手动创建了以下文件夹:

app/storage/
app/storage/cache/
app/storage/logs/
app/storage/meta/
app/storage/sessions/
app/storage/views/
然后,我删除了供应商文件夹的内容,并再次运行composer update