[google-appengine] PHP Developer server + PHP-FPM

2019-02-11 Thread Piotr WielÄ…dek
Hey, I'm trying run devappserver.py with --php_executable_path=/usr/sbin/php-fpm7.2 and always getting: INFO 2019-02-10 16:54:12,503 devappserver2.py:278] Skipping SDK update > check. > INFO 2019-02-10 16:54:52,671 api_server.py:275] Starting API server > at: http://localhost:35949 >

[google-appengine] No search results for my website but it does show some pages from one of my clients sites

2019-02-11 Thread Luke Douglas
I did a search for "site:webbering.com" so I could see what pages I needed to add a redirect for my new website. However, I got NONE of my pages but it did get some pages from one of my client websites. the "web.webbering.com" was my previous server which is now "web.webbering.net". I'm shocke

[google-appengine] Needed URL endpoints to whitelist for pub-sub (publish)

2019-02-11 Thread Anoop Kumar
Hello, I am using pub/sub python client. Our organization's firewall is stopping us to publish. Hence API endpoint URLs used by pub/sub client is needed to whitelist them from the firewall. Any help will be much appreciated. Thanks in advance. -- You received this message because you are subscr

[google-appengine] Get the data from a document in Firestore as dictionary

2019-02-11 Thread Guanaco Devs
When triggering a Python function for Firestore the data of the document comes whithin the event in the form of: { 'value': { 'fields': { 'count': { 'integerValue': '0' }, 'verified': { 'booleanValue': False

[google-appengine] Re: PHP Developer server + PHP-FPM

2019-02-11 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Piotr, What directory are you in when running this command? You should rather run the dev_appserver.py command as follows from the directory that contains your app's app.yaml configuration file: dev_appserver.py [PATH_TO_YOUR_APP] Alternatively, you can specify the configuration file o

[google-appengine] Re: No search results for my website but it does show some pages from one of my clients sites

2019-02-11 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Luke, Your site indicates "Powered by Webbering". Are you sure your site is deployed to Google Cloud Platform? If so, did you deploy it to Standard Environment or Flexible? When did you notice this redirection issue? What would your exact expectation be? -- You received this message b

[google-appengine] Re: Needed URL endpoints to whitelist for pub-sub (publish)

2019-02-11 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Anoop, If you rely on IP-based firewall rules as a security mechanism, note that Cloud Pub/Sub is not associated with any specific IP address. Configuration of your Organization's firewall falls under your Organization's responsibility, and you should take into consideration the situatio

[google-appengine] Re: Get the data from a document in Firestore as dictionary

2019-02-11 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Guanaco, There is a doc.to_dict() function as well. You may want to check an example on the "google-cloud-firestore 0.31.0" Python documentation page . All this is above the scope of this discussion group, in fact off-topic. You should

[google-appengine] Re: Get the data from a document in Firestore as dictionary

2019-02-11 Thread Guanaco Devs
Thank you George. Sorry, I thought Python functions were part of the platform and its services. I did ask before in SO with the provided link since I didn't get any pointer there I thought that I could do it here. What I'm looking is for the equivalent doc.to_dict() for a event, something maybe