2

我正在运行 Laravel 5.4 项目,并托管在谷歌云项目下。为了测试我使用过的相同,dev_appserver.py app.yaml --runtime=php55它启动了程序,但它抛出了显示的错误

Warning: require(/Users/Avi/Documents/.../website/PLACEHOLDER): failed to open stream: No such file or directory in /Users/Avi/Downloads/google-cloud-sdk/platform/google_appengine/google/appengine/tools/devappserver2/php/setup.php on line 147

Fatal error: require(): Failed opening required '/Users/Avi/Documents/.../website/PLACEHOLDER' (include_path='.:/Users/Avi/Documents/.../website:/Users/Avi/Downloads/google-cloud-sdk/platform/google_appengine/php/sdk') in /Users/Avi/Downloads/google-cloud-sdk/platform/google_appengine/google/appengine/tools/devappserver2/php/setup.php on line 147

在此处输入图像描述

应用程序.yaml

  runtime: custom
env: flex

runtime_config:
  document_root: public

# Ensure we skip ".env", which is only for local development
skip_files:
  - .env

env_variables:
  # Put production environment variables here.
  APP_LOG: errorlog
  APP_KEY: base64:...
  STORAGE_DIR: /tmp
  CACHE_DRIVER: file
  SESSION_DRIVER: file

我无法弄清楚什么是“PLAEHOLDER”以及如何解决错误,以便可以在本地托管以下 laravel 项目以进行开发阶段。

TIA

4

2 回答 2

1

您正在尝试使用从标准环境到灵活环境应用程序的本地测试方法。本地开发服务器不支持灵活的应用程序 - 因此出现错误。

PHP 开发服务器

注意:dev_appserver.py不在 App Engine 柔性环境中运行。

相关:如何判断 Google App Engine 文档页面是适用于标准环境还是适用于柔性环境

这是您需要遵循的文档:在本地运行

于 2017-08-24T15:38:51.103 回答
-1

我使用的一些配置设置遇到了同样的错误。

我的 app.yaml 文件与 php 运行时一起使用:

runtime: php
env: flex

runtime_config:
  document_root: public

# Ensure we skip ".env", which is only for local development
skip_files:
  - .env

env_variables:
  # Put production environment variables here.
  APP_LOG: errorlog
  APP_KEY: your_key
  STORAGE_DIR: /tmp

我无法获得使用 php 的标准环境,如果有人可以,请告诉我们如何:)

于 2017-08-24T03:15:24.560 回答