Questions tagged [google-app-engine-php]

PHP language version of Google App Engine

PHP Runtime Environment for Google App Engine

Useful links:

118 questions
0
votes
1 answer

Does my PHP project need appengine-web.xml

Setting up IntelliJ IDEA to run my PHP Wordpress (for App Engine) projects. Google Cloud Tools installed. Have imported existing project files and then went to Tools > Google Cloud Tools > Run on a local App Engine Standard dev server. An error is…
0
votes
1 answer

How to increase fastcgi_read_timeout in google-app-engine nginx?

I looking for a way to incease 'fastcgi_read_timeout' in GAE Flex using runtime_config 'nginx_conf_include'. The reason to increase the timeout is my http request requires around 90seconds but the default only 60seconds. Can't manage to find in SO…
ihsanberahim
  • 1,051
  • 12
  • 14
0
votes
3 answers

Google App Engine instance’s IP changed automatically with specific time interval

I have very serious question that my App Engine instance’s IP changed automatically with specific time interval. So my live application stops working. Can you please help so that we can make it working again. Right now to solve this issue we have…
0
votes
0 answers

Google AppEngine Cron Jobs on custom environment

I am having problems when running cron jobs on App Engine. I have an App Engine Flex custom application running (using php:7.0-apache) I also have an URL that I can call to run my job, let's say myapp.com/cacheupdate.php, when I point to that URL…
0
votes
2 answers

Running Google App Engine as PHP Command Line?

I currently have a small Google App Engine project written in PHP. On a traditional web server, I would simply invoke this particular code via command line (e.g., php whatever.php). I'd like to set this up with cron.yaml to just run every hour or so…
Casey Grimes
  • 117
  • 12
0
votes
1 answer

Google App Engine handler won't work unless a catch all handler is set

I'm struggling to setup URL handlers in the handlers section of my app.yaml file for my standard engine php application. Following code makes both mydomain.com/abc.php and mydomain.com display the abc.php file in my dist folder: handlers: - url:…
0
votes
1 answer

Google App Engine (GAE) - Running same task simultaneously for every user, every minute

I currently have 2 users of my PHP app, deployed to Google App Engine (GAE) standard env. My aim is to have up to 100 users within a year. All users execute the same app code, but have their own copy of the database. Every user needs to sync data…
0
votes
2 answers

Google App Engine PHP dev local - The character encoding of the HTML document has not been declared

I am beginner in App Engine PHP. I am working in ubuntu 16.04 and Google Cloud SDK 187.0.0. I am following this tutorial https://cloud.google.com/appengine/docs/standard/php/quickstart My code is: app.yaml runtime: php55 api_version:…
WH NM
  • 1
  • 3
0
votes
1 answer

How do I configure my nginx-app.conf file to serve /index.php if found in the supplied URL on app engine flexible?

I recently migrated a site to the flex environment from bluehost. With this migration, I'm aware that I need to configure my nginx-app.conf file to serve scripts/files in the way that I want, but I don't know how to do this. I want to mimic hosting…
0
votes
1 answer

AppEngine class found on local but not when deployed

For some reason, this perfectly works on my local development server but when I deploy it to google I get the following error: PHP Fatal error: Class 'PHPOnCouch\couchClient' not found in…
0
votes
1 answer

Trying to build GAE PHP runtime extension

I'm trying to build GAE PHP runtime extension for local development. I've followed instructions described in https://github.com/GoogleCloudPlatform/appengine-php-extension When running the .configure i get the following error: configure: error:…
0
votes
1 answer

App Engine YAML file not running scripts

All other static files are serving as normal at domain. It seems PHP file wasn't running; when I don't try to run it as a script (and just upload it as a static file) it works fine; returning plaintext when jQuery calls it - so its definitely not a…
0
votes
1 answer

Google Cloud PubSub with PHP - how to install classes on the App Engine server side?

I'm trying to use the Google messaging system but I'm failing before starting. I'm trying to start with a super simple app that only transmit a "hello world" message and then capture it. Saving it in DB and other tasks will be done after this…
0
votes
2 answers

App Engine access service(s) with custom domain and HTTPS

I have a GAE app set up to use a custom domain, let's call it mycustomdomain. This naked domain is working fine over HTTP and HTTPS. I also have a service called api, it can be accessed successfully by going to http://api.mycustomdomain.com…
Ben Z.
  • 157
  • 1
  • 1
  • 9
0
votes
2 answers

Stuck Deploying my first app engine app

I am deploying my first app to google app engine and I am getting stuck at "Started cloud build" obviously there is some kind of problem with the build but I am unsure how to diagnose or proceed. I have included the LOG file if that helps …