I have an App (PHP 7.4) running on Google AppEngine Standard. Now i have created a new Project inside CloudConsole wih same settings and want to deploy this App to the new generated Project for testreason.
gcloud app deploy app.yaml --project=testapp-2022-08-14
But i am getting this error:
Fatal error: Unknown: Failed opening required '/srv/vendor/google/cloud-error-reporting/src/prepend.php' (include_path='.:/layers/google.php.runtime/php/lib/php') in Unknown on line 0
To activate the Cloud-Error-Reporting i followed this Documentation: CloudErrorrEPORTING
my php.ini
auto_prepend_file = '/srv/vendor/google/cloud-error-reporting/src/prepend.php'
session.gc_maxlifetime = 259200
opcache.memory_consumption = 128
my app.yaml
runtime: php74
instance_class: F1
entrypoint: serve bootstrap.php
handlers:
...
env_variables:
...
runtime_config:
document_root: .
automatic_scaling:
max_instances: 20
any help is welcome