[google-appengine] Re: Firebase Cloud Functions on Client (vue.js) to access Back-End API data hosted on GAE PHP

2019-10-16 Thread 'George (Cloud Platform Support)' via Google App Engine
You have proceeded correctly by posting on stackoverflow. This discussion group is oriented more towards general opinions, trends, and issues of general nature touching App Engine and Cloud SQL. For coding and programming architecture, as well as comparative advantages of Firebase Auth, you'll

[google-appengine] Re: customizable backup validation error

2019-10-16 Thread 'George (Cloud Platform Support)' via Google App Engine
In what context did you notice the error? What where you attempting to do, when noticing the error? What was the exact text of the error that you noticed? If you were running any of the gcloud commands, you are encouraged to run that command again, with parameter --verbosity=debug, and copy res

[google-appengine] Re: Deploy two versions of same app at same time

2019-10-15 Thread 'George (Cloud Platform Support)' via Google App Engine
What is the use of deploying two versions at the same time, and not one after the other? An issue description needs the support of a well-motivated use-case to prove its point and convince. A detailed description, preferably in step-by-step format, would be appreciated. -- You received this

[google-appengine] Re: Where is the deferred documents?

2019-10-15 Thread 'George (Cloud Platform Support)' via Google App Engine
You may refer to issue 142714150 , of identical content. We hope to be offered a solution soon, and a proper link to the page you are looking for. Meanwhile, does google.appengine.ext.deferred.deferred module

[google-appengine] Re: dates in app engine java

2019-10-10 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Joan, How did you perform the query? Do you refer to com.google.appengine.api.datastore Class Query ? There is a Enum Query.SortDirection. Did you use Cloud SQL? This discussion gro

[google-appengine] Re: Does gae support boto3?

2019-10-10 Thread 'George (Cloud Platform Support)' via Google App Engine
You are right: supported in GAE runtime, so after your app is deployed, not in local development environment. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email

[google-appengine] Re: deploy error - token exchange failed

2019-10-07 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Laurent, This seems to be an authentication issue. When installing Cloud SDK, have your run gcloud auth login to authorize gcloud to access the Cloud Platform with Google user credentials? What is the exact command you have run

[google-appengine] Re: not understand my log error for deploy on gcloud

2019-10-02 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Willy, Error "pip_install_from_wheels returned code 1" is likely caused by a non-ASCII character in Cloud SDK's path, or in a parameter of the gcloud command. It seems likely that one of the accented characters in French causes the error. You may find related information in the "Google A

[google-appengine] Re: PubSub Pull Topic on AppEngine Standard

2019-10-01 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Nicholas, You may set up apps in different environments as subscribers to Pub/Sub messaging, all this described on Receiving messages using Pull . It is not clear what you mean by deploying Flex instances to App Engine Standard instances. You ca

[google-appengine] Re: Change Default Timezone on cloud Sql instance

2019-10-01 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Mua, How did you change the default_time_zone flag, exactly. Did you use the command line with gcloud sql instances patch [INSTANCE_NAME] --database-flags [FLAG1=VALUE1,FLAG2=VALUE2]? Did you use Cloud Console? Worth noting: leading zeros required. You mention echoing the date time. Wh

[google-appengine] Re: org.eclipse.jetty.servlet.ServletHolder : java.lang.RuntimeException: Cannot access service class:? endpoint deploy ,why?

2019-10-01 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Guy, You seem to want to deploy an App Engine application or a Cloud Endpoint from Eclipse. How did you deploy? What commands did you use? For reference, you may check Deploying the Endpoints configuration and Dep

[google-appengine] Re: GAE/Java (EU) - Strange instance behavior.

2019-10-01 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Thanasis, You can limit the number of instances running with parameters such as max_instances in app.yaml . There is no outage or diminished service level on right now, but you may have been affected

[google-appengine] Re: Trying to mount Google Filestore share in GAE flexible runtime container

2019-10-01 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Rui, This appears to be a different question, worth opening a different thread in Groups. Do you refer to App Engine Standard, or Flexible? GAE offers a managed environment, which restricts some privileges and does not allow access to local file-systems, except /temp. In this context, l

[google-appengine] Re: Whitelisting Google App Engine in google VM instance

2019-09-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Sujesh, If you want your VM instances to use internal IP addresses instead of external IP addresses, you can use Private services access in a Virtual Private Cloud (VPC) network. You can read more about VPCs o

[google-appengine] Re: Gcloud app engine for cloud storage

2019-09-26 Thread 'George (Cloud Platform Support)' via Google App Engine
As PHP scripts run relative to the current path, not to the path of script itself, you can use __DIR__ to change this behavior, so that include refers to the script's own path, as a result. StorageClient not found error is likely due to the absence of Cloud Storage Client Libraries

[google-appengine] Re: Using app engine for a SAAS with custom domains and SSL

2019-09-26 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Tom, The process of registering a custom domain for your appspot.com site is fraught with delays that would cause your described automatic procedure to fail. You may gather related detail on the "Mapping Custom Domains" documentation page

[google-appengine] Re: Using autoload.php

2019-09-26 Thread 'George (Cloud Platform Support)' via Google App Engine
As PHP scripts run relative to the current path, not to the path of script itself, you can use __DIR__ to change this behavior, so that include refers to the script's own path, as a result. StorageClient not found error is likely due to the absence of Cloud Storage Client Libraries

[google-appengine] Re: Why TTFB on Google Cloud Run/App depends significantly on domain?

2019-09-26 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Andy, > > There are architectural reasons for increased TTFB in some regions. Where do you run your services, in which regions? This is a known issue, and Developers are actively working towards a fix. -- You received this message because you are subscribed to the Google Groups "Google

[google-appengine] Re: google app engine deploy error from gitlab runner

2019-09-24 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Bilal, Local development environment is different from App Engine runtime after deployment, in particular here your local environment is able to run the binary: GitLab Runner is designed to run on the GNU/Linux, macOS, and Windows operating systems. Other operating systems will probably

[google-appengine] Re: Does gae support boto3?

2019-09-24 Thread 'George (Cloud Platform Support)' via Google App Engine
This sub-process is now supported in App Engine's production environment for Python 2.7. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+

[google-appengine] Re: .NET Core 3.0 Timeline

2019-09-24 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Dominic, You should not be worried of timelines and obsolescence: any such event would be announced well in advance, at least one year prior to the cutoff date. There usually is a subsequent long period of continued support for applications using the prior version; there is no risk to ha

[google-appengine] Re: Problem with Google Calendar Api error This app isn't verified

2019-09-23 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Leandro, This discussion group is oriented more towards general opinions, trends, and issues of general nature touching the app engine. For Wordpress site setup, as well as setting up Calendar API access, you may be better served in dedicated forums such as stackoverflow, where experienced

[google-appengine] Re: How to export more than 50 Kinds from Google Cloud Datastore into the same Cloud Storage Bucket?

2019-09-23 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Hamid, You mention splitting your export into chunks of 40 entities. Do you export this chunk in a single operation? If so, you may check the value of requests per minute, as there is a limit of maximum of 20 export and import requests per minute for a project. You may find related infor

[google-appengine] Re: Managed Google vs Raw Google

2019-09-23 Thread 'George (Cloud Platform Support)' via Google App Engine
Your question is is replied simply by listing advantages of Infrastructure-as-a service, as Compute Engine falls under this category, IaaS: - High-Performance, Scalable VMs - Industry Leading Price & Performance - Low Cost, Automatic Discounts - Fast & Efficient Networking - Flexibility for Ev

[google-appengine] Re: Problem with Google Calendar Api error This app isn't verified

2019-09-19 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Leandro, Do you develop a mobile app? This screen is for developers who want to set up user access from their app. You mention you are not a programmer, so you are likely dealing with irrelevant settings, which are not applicable to your particular situation. You seem to just want to sha

[google-appengine] Re: running instances serving old versions of an application in google app engine

2019-09-17 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Pardeep, Do you refer to App Engine Standard Environment? When an application is not being used at all, App Engine turns off its associated dynamic instances, but readily reloads them as soon as they are needed. Reloading instances can result in loading requests and additional latency fo

[google-appengine] Re: Is is possible to run a script on deploy such as "post-install-cmd" on GAE Standard PHP7.2/7.3?

2019-09-17 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Mihai, In the App Engine Standard Environment, file system is read-only, except for /tmp. If your script attempts to write to the file system, it would fail. It depends on what your script is meant to do. You are right about Flexible Environment, there is information on the Web on using

[google-appengine] Re: GEOCODING - How to protect my KEY?

2019-09-17 Thread 'George (Cloud Platform Support)' via Google App Engine
You may restrict your API key in two ways: application restriction or API restriction. This is detailed on the "Get an API Key" page . Moreover, Premium Plan customers may choose to authenticate requests using

[google-appengine] Re: A version of your app is using a deprecated version of Go. Please upgrade before October 1, 2019. Learn more

2019-09-16 Thread 'George (Cloud Platform Support)' via Google App Engine
You may refer to the Go “Release History” page : “each major Go release is supported until there are two newer major releases. For example, Go 1.5 was supported until the Go 1.7 release, and Go 1.6 was supported until the Go 1.8 release”. Currently

[google-appengine] Re: Mapping custom domain with projects hosted on app engine

2019-09-16 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Kofi, Meanwhile, I have gone ahead and opened an identical issue in the Public Issue Tracker. You should follow this issue for replies, developments and fixed. -- You received this message because you are subscribed to the Google Groups "Goo

[google-appengine] Re: Mapping custom domain with projects hosted on app engine

2019-09-13 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Kofi, It can take a while for these changes to take effect. You may check the "Mapping Custom Domains" documentation page for reference. If the problem persists, and you think this is an issue on Cloud Pl

[google-appengine] Re: Google AppEngine Flexible PHP - "SQLSTATE[HY000] [2002] No such file or directory"

2019-09-13 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Hampus, Indeed, I was thinking about user creation, as describe on the "Creating and managing MySQL users" users page , "Creating a user" sub-chapter, step 5: "Optionally, a Host". If you would like us to take a closer

[google-appengine] Re: If possible to disable TLS 1.0/1.1 in a GCP proyect

2019-09-12 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Alexander, It is indeed possible; you should open a support case, if you enjoy paid support for your project, alternatively an issue in Public Issue Tracker , specifying what suite of ciphers you would like to have enabled for your project. You'll need t

[google-appengine] Re: Google AppEngine Flexible PHP - "SQLSTATE[HY000] [2002] No such file or directory"

2019-09-11 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Humpus, Have you set the host to 'localhost' or '127.0.0.1' ? This is strictly for testing locally during development, unsuitable for deployed applications running in production. This discussion Group is meant for general discussion, voicing of opinions, and socializing, and is not for

[google-appengine] Re: App Engine Flex auto-scaling help

2019-09-10 Thread 'George (Cloud Platform Support)' via Google App Engine
Flexible environment uses the Compute Engine Autoscaler . Flexible environment does not support all of the autoscaling options that are available to Compute Engine. The autoscaler continuously collects usage information based on the policy, com

[google-appengine] Re: gcloud app deploy omitting subdirectories? (Google Cloud SDK 261.0.0) / NodeJS

2019-09-10 Thread 'George (Cloud Platform Support)' via Google App Engine
Grateful for the detailed explanation of the solution. You are welcome opening separate issues in this Public Issue Tracker, if you are faced with other problems. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this g

[google-appengine] Re: App engine Go runtime 1.12 and memcache support

2019-09-10 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Sahil, The recommendation, in this case, is to use Redis Labs Memcached Cloud , instead of App Engine Memcache. You may check Migrating your App Engine app to Go 1.12

[google-appengine] Re: GAE Flex Nodejs deploy failing

2019-09-09 Thread 'George (Cloud Platform Support)' via Google App Engine
You should be reporting this error in the ongoing issue , eventually re-opening it, if you have good reasons to think this is an App Engine issue. This should allow Developers to examine your issue in depth. It is advisable to run gcloud components up

[google-appengine] Re: gcloud app deploy omitting subdirectories? (Google Cloud SDK 261.0.0) / NodeJS

2019-09-09 Thread 'George (Cloud Platform Support)' via Google App Engine
How did you run your command, exactly? What is the output from the following commands? gcloud components update gcloud info gcloud app deploy --verbosity debug You should edit out all private information, such as project numbers, from the copied output. This error is displayed usually when n

[google-appengine] Re: nginx 502 error

2019-08-29 Thread 'George (Cloud Platform Support)' via Google App Engine
You may check replies and developments in your other, identical posting . -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop

[google-appengine] Re: Nginx 502 Error

2019-08-29 Thread 'George (Cloud Platform Support)' via Google App Engine
You may follow developments in your other, parallel posting . -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving em

[google-appengine] Re: Nginx error

2019-08-29 Thread 'George (Cloud Platform Support)' via Google App Engine
502 (BAD GATEWAY) is returned by nginx if it fails to contact your service. This usually happens if your app stopped listening, when instance has been shut down or did not start. Investigation progress depends on information such as: what app engine service is affected by this issue, name of s

[google-appengine] Re: App Engine doesn't downscale when CPU utilisation is below target_utilization

2019-08-28 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Harshit, You seem to imply that downscaling depends strictly on CPU utilization levels. This is in fact not exactly the case, there are more factors involved; following policies may be adopted: - Average CPU utilization (not identical to target utilization) - HTTP load balancing serving

[google-appengine] Re: Is headless Chrome really available on App Engine/Cloud Functions?

2019-08-28 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Masataka, Headless Chrome is indeed available in Cloud Functions, you may check sub-chapter "Support for headless Chrome and additional system libraries" on "Cloud Functions serverle

Re: [google-appengine] Re: Viewing App engine Deployed files

2019-08-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Mua, Where did you deploy your app? App Engine Standard, Flexible, Compute Engine VM? You should be aware that /tmp is of temporary nature; moreover, the instance itself gets restarted from time to time, mainly for maintenance purposes. Saving files locally is not a solid long-term so

[google-appengine] Re: Brazil IP

2019-08-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Manu, To get an IP from Brazil, you have the option to choose region southamerica-east1 a, b, c Osasco (São Paulo), Brazil, from the Regions and Zones list . Practical details are to be found on the "Reserving a Static External IP Ad

[google-appengine] Re: Viewing App engine Deployed files

2019-08-26 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Mua, Artisan is the command-line interface included with Laravel. What do you mean by "resolve it on the app engine"? You seem to say you have run Artisan commands locally, in your development environment, and you would like now to run the same commands to modify your deployed app's code

[google-appengine] Re: Really confused by Warmup Requests on NodeJS + not working!

2019-08-23 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello David, Warmup requests load your app's code into a new instance before any live requests reach that instance. You may find related detail on the "Configuring Warmup Requests to Improve Performance" documentation page

[google-appengine] Re: Active PHP 7.2 sessions lost after gcloud app deploy

2019-08-20 Thread 'George (Cloud Platform Support)' via Google App Engine
In App Engine Standard environment, you can migrate traffic gradually. "Migrating Traffic" page gives details. Gradual traffic migration traffic between versions running in the flexible envi

[google-appengine] Re: native libraries with Java?

2019-08-19 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Dane, You may try using a Flexible Environment Custom Runtime , and its Dockerfile to configure the environment and install OR-Tools. Success in installing OR-Tools depends on Dockerfile's own capabilities, as descr

[google-appengine] Re: Active PHP 7.2 sessions lost after gcloud app deploy

2019-08-16 Thread 'George (Cloud Platform Support)' via Google App Engine
This is expected behavior. If you deploy a version that specifies the same version ID as a version that already exists on App Engine, the files that you deploy will overwrite the existing version. This can be problematic if the version is serving traffic because traffic to your application migh

[google-appengine] Re: How to redirect www.mysite.appspot.com to mysite.appspot.com

2019-08-13 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello David, You can use www.mysite.appspot.com and mysite.appspot.com interchangeably: you get to the same page in both cases. You may consider using a custom domain instead, and map it to your appspot.com domain, as detailed on the "Mapping Custom Domains" documentation page

[google-appengine] Re: Google App Engine Instance is abruptly shutting down on Standard Environment

2019-08-09 Thread 'George (Cloud Platform Support)' via Google App Engine
Instance re-starting is normal in the present case, and your application should take this into consideration. Hardware and software failures that cause early termination or frequent restarts can occur without prior warning and can take considerable time to resolve; thus, you should construct yo

[google-appengine] Re: Deploy python3 appengine standard env using bazel and cloud deploy using non containerized artifact?

2019-05-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Akkul, Right reply to your question depends on details such as correct paths and similar. If you followed the provided example faithfully, you should succeed. This discussion group is oriented more towards genera

[google-appengine] Re: Why did Frontend Instance Hours of GAE can be over 48 hours with 2 max instances

2019-05-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Jarindr, It is difficult to make oneself and opinion and judge about correctness in presence of only partial information. To get detailed information, you should go to Billing

[google-appengine] Re: Are Allocated IDs for child entities guaranteed to be unique?

2019-05-27 Thread 'George (Cloud Platform Support)' via Google App Engine
The solution described in the stackoverflow reply you link to should work well. This has been already confirmed by Sam in his posting above. This discussion group is oriented more towards general opinions, trends, and issues of general nature touching App Engine and Datastore. For coding and pr

[google-appengine] Re: DataStore wont allow me to save byte[]

2019-05-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi again Tony, In fact, Byte string (short) and Byte string (long) are supported data types. You can gather more detail on the "Entities, Properties, and Keys" page . -- You receiv

[google-appengine] Re: DataStore Key handling

2019-05-20 Thread 'George (Cloud Platform Support)' via Google App Engine
We are on the same wavelength about updating entities, I think. For code samples, you could check the "Entities, Properties, and Keys" page . Your use-case is interesting, but does not require more detail to implement, than already prov

[google-appengine] Re: GCP service similar to AWS Step Functions?

2019-05-19 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Jeremiah, There is no identical offer on GCP, that would 100% match AWS Step Functions, judging by this central comparison table on Map AWS services to Google Cloud Platform products . -- You received this message becau

[google-appengine] Re: sync between datastore and firestore

2019-05-19 Thread 'George (Cloud Platform Support)' via Google App Engine
Objectify is a Java data access API specifically designed for the Google Cloud Datastore, so you use in fact Datastore. As a consequence, the above applies: you may operate Firestore in Datastore mode, and you can use i

[google-appengine] Re: How to access Cloud firestore from Google app eninge

2019-05-19 Thread 'George (Cloud Platform Support)' via Google App Engine
As things are now, is not possible to switch from Datastore to Firestore within the same project. Still, you may operate Firestore in Datastore mode. By creating a Cloud Firestore database in Datastore mode, you can access Cloud Firestore's improved storage layer while keeping Cloud Datastore s

[google-appengine] Re: Question on LeaseOptions

2019-05-19 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Tony, You are right, the shortest formulation for lease in this context is the one you wrote: get a task and then run it. There are still some other important elements to this: leasing a task makes it unavailable for processing by another worker, and it remains unavailable until the leas

[google-appengine] Re: DataStore Key handling

2019-05-19 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Tony, In fact, the reply looks somewhat different: once the key was created when you created the entity, you use it to retrieve the entity information whenever needed, so you don't need to recreate this key each time you want to access Datastore: you just reuse it. -- You received this m

[google-appengine] Re: DataStore Key handling

2019-05-18 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Tony, Each entity in Datastore has a key that uniquely identifies it. The key consists of the following components: - The namespace of the entity, which allows for multitenancy - The kind of the entity, which categorizes it for the purpose of queries - An identifier for the individual ent

[google-appengine] Re: java.lang.outofmemoryerror: java heap space when creating ZIP archives in Google App Engine ( Java)

2019-05-18 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Ibrahim, Which version of Java do you use? To avoid out-of-memory errors, you may consider setting a higher instance class in the appengine-web.xml configuration file, using . If you use Java 8, you could ask for more memory in the same configuration file, by means of:

[google-appengine] Re: Broken: Deployment using service accounts

2019-05-18 Thread 'George (Cloud Platform Support)' via Google App Engine
If you refer to the "Predefined App Engine roles" sub-chapter of the "Access Control" online document, you'll notice that only the App Engine Deployer role has "Write access only to deploy and c

[google-appengine] Re: How to backup / restore the Flexible App Engines

2019-05-14 Thread 'George (Cloud Platform Support)' via Google App Engine
App Engine Flexible Environment is a managed environment, that takes the burden of many maintenance-related tasks away from you. App Engine manages your virtual machines, ensuring that: - Instances are health-checked, healed as necessary, and

[google-appengine] Re: Avoiding index.yaml changes when using dev_appserver

2019-05-14 Thread 'George (Cloud Platform Support)' via Google App Engine
This is expected functionality: the development web server (dev_appserver.py) automatically adds items to this file when the application tries to execute a query that needs an index that does not have an appropriate entry in the configuration file. You may find related detail in the "Creating i

[google-appengine] Re: When can a app be filled with information

2019-05-13 Thread 'George (Cloud Platform Support)' via Google App Engine
Managing data stored by your app, and the way it gets updated, all depend on the way you program your application, and how you plan to use it. If you are looking for a solution that comes handy for mobile development, you may consider Firebase . Firebase gives you

[google-appengine] Re: NonRetriableException: com.google.apphosting.api.ApiProxy$CancelledException: The API call urlfetch.Fetch() was explicitly cancelled.

2019-05-13 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Diego, This error is indicative of a async urlfetch call, even warped in another call, which did not complete at the time the page finished loading. Solution consists in making sure that any async calls complete before your load is completed. Being a matter of a call in real time, the er

[google-appengine] Re: When can a app be filled with information

2019-05-11 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Alan, Do you mean, you would like to have the ability to upload information to your site? This can be accomplished using a content management system (CMS). You may have a look at ButterCMS: A Headless CMS , or, depe

[google-appengine] Re: App Engine Logging has a lot to be desired

2019-05-11 Thread 'George (Cloud Platform Support)' via Google App Engine
Engineering has been made aware of your feature request and an issue with identical content has been opened in the Public Issue Tracker. You may follow related developments in that issue. -- You received this message because you are subscribed to th

[google-appengine] Re: Express server on App Engine - CORS problems when doing AJAX requests

2019-05-05 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Boris, You may have to set CORS support in app.yaml, if you haven't already done so. Settings should match planned usage and your app's code. you may refer to the "CORS Support" sub-chapter of the

[google-appengine] Re: PHP7.2 runtime - Force HTTPS

2019-05-04 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Shaharia, Subelement "secure:always" is supposed to work still with PHP 7.2 runtime. You may have a look at the "app.yaml Configuration File ". You mention that you think this is not working. How did y

[google-appengine] Re: Datastore Admin

2019-05-04 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Rajesh, You can still enjoy the old functionality; you are in the same time encouraged to use similar functionality from the Managed Export and Import Service . Related information is to be found on the "Datastore Admin Back

[google-appengine] Re: config.json missing in GCP node.js tutorial

2019-04-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Julius, In fact, documentation is not to well-structured at this point: you need to create config.json, as detailed on the "Using Structured Data with Node.js" page [1], rather than simply to copy it. The right order of things is: create config.json then copy it in accordance with instru

[google-appengine] Re: Import Error: No Module named google.auth

2019-04-21 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Melanie, Have you installed Client Libraries with pip install --upgrade google-api-python-client google-auth-httplib2 google-auth-oauthlib? You can find related detail on the "Python Quickstart" documentation page . -- You rece

[google-appengine] Re: "InvalidSenderError: Unauthorized sender error" suddenly started happening on our project.

2019-04-21 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Andrea, You can find details relevant to your question "what is a google-hosted domain account" on the "Mail API Overview" documentation page , namely in the "Who can send mail" sub-chapter. "App Administrator

Re: [google-appengine] Re: Max 10,000 file limit is not suitable for modern full featured wordpress site or any PHP app

2019-04-21 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Shaharia, You should have a look at the "Getting Support for Google Cloud Platform" documentation page , "Contacting Technical support" sub-chapter, and proceed in the accordance with the instructions provided there.

[google-appengine] Re: How to host images with direct link?

2019-04-16 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Rokas, You can make any object stored in Cloud Storage publicly accessible via its URL, by following the appropriate steps in the "Making Data Public" online document . -- You received this message becau

[google-appengine] Re: Cloud schedule targetting to a specific app engine service

2019-04-15 Thread 'George (Cloud Platform Support)' via Google App Engine
The appspot.com domains also support subdomains of the form [SUBDOMAIN]-dot-[YOUR_PROJECT_ID].appspot.com, where [SUBDOMAIN] can be any string allowed in one part of a domain name, excluding the . character. You can find related details on the "How Requests are Routed" documentation page

[google-appengine] Re: GAE python script via GAE Cron service job time limit

2019-04-14 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Sunil, The cron timeout deadline depends on the instance class and scaling type that is configured for your app. In case of automatic scaling, timeout is about 10 minutes. For basic scaling and manual scaling, timeout can be up to 24 hours. You may gather related detail from the "cron.ya

[google-appengine] Re: Cloud Tasks getting executed hours beyond their ETA

2019-04-13 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Jeff, Has the quota increase solved your issue? If not, I fully support my Colleague's recommendation, and suggest you should open an issue of similar content in the Public Issue Tracker . -- You received this messa

[google-appengine] Re: How long will the original App Engine SDK (Python 2.7) be supported?

2019-04-10 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Mark, Your concerns are fully justified, and, in fact, shared by quite a few developers. You needn't fear for the Python 2.7 apps already deployed. 2020 is not as critical a date as may appear at first sight. Python 2.7 will get support for the benefit of existing Google App Engine (GAE)

[google-appengine] Re: Hong Kong GPU Availability

2019-04-10 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Derek, The importance of the Hong Kong zone is undeniable, and efforts are being made to provide the GPU-related service for the region. Still, there is as yet no clearly defined availability date. Generally, these zonal product launches are not normally made publicly known in advance, a

[google-appengine] Re: Can I have two domains associated with one GAE project?

2019-04-09 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Mark, You could associate both both www.oldsite.com, as well as www.newsite.com to yourproject.appspot.com. Procedure to follow in both cases is given on the "Mapping Custom Domains" documentation page . -

[google-appengine] Re: Contacts pop-up issue

2019-04-09 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Luke, Regarding the slow pop-up from Contacts, I imagine you refer to the pop-up that appears when you click one entry from the list of contacts at contacts.google.com. If this is the case, I cannot reproduce the issue: pop-ups are super fast on all browsers. You are right, this is the

[google-appengine] Re: How do I get a Python37 app working?

2019-04-09 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Mark, There doesn't seem to be a compelling need to test static content locally. In fact, tutorial "Hosting a static website on Google App Engine" does not list th

[google-appengine] Re: I am new to google datastore. Looking at mapping between entities (Java)

2019-04-09 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Tony, You seem to think along the lines of SQL databases. Cloud Datastore is a highly-scalable NoSQL database for your applications. Entities in a Datastore mode database form a hierarchically structured space similar to the di

[google-appengine] Re: API and services - my project with google Drive - imported external accounts fail to access to my project

2019-04-09 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Marco, You refer to Google Drive and a server that might not be installed on a GCE instance. This discussion group is dedicated to App Engine. For issues related to Google Drive and G Suite, you are better served if posting in the appropriate discussion group, and contacting G Suite help

[google-appengine] Re: form sends information but php no run.

2019-04-09 Thread 'George (Cloud Platform Support)' via Google App Engine
At this stage, more detailed information on your app's code is needed, and you project ID, with private details that are better handled in a proper issue tracker . You are encouraged to open an issue in the Public Issue Tracker

[google-appengine] Re: when we can expect the java 11 in appengine standard?

2019-04-08 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Saif, Java 11 for Standard is definitely under heavy development. At this stage, there is no release date established. Generally, release dates are not published in advance due to various factors, such as unpredictability of testing, last-minute changes, and the usual software developmen

[google-appengine] Re: Video on how to setup Google Compute Engine

2019-04-07 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Dos, You may choose to install Ubuntu 14.04 if you wish, you may install it as Linux Guest Environment for Compute Engine. Related details are to be found on the "Installing the Linux Guest Environment" documentation page

[google-appengine] Re: Google map

2019-04-07 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Sameera, This discussion group is dedicated to App Engine subjects. You seem to need help with Google Maps programming. If such is the case, you should take advantage of one of the support packages and technical information on the "Premium Plan Support and Resources" page

[google-appengine] Re: encoded keys in the app vs datastore viewer

2019-04-07 Thread 'George (Cloud Platform Support)' via Google App Engine
The string representation of a key looks cryptic, but is not encrypted. If you don't want to expose this data to your users, you may consider encrypting these strings. How do your app keys look like in your app, and why do you consider these keys encrypted? A screen capture, with personal data

[google-appengine] Re: Cheapest possible config for app engine flexible instance

2019-04-05 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Miguel, > > As Jordan was saying, the standard environment can scale from zero instances up to thousands very quickly. In contrast, the flexible environment must have at least one instance of your application running and can take longer to scale up in response to traffic.You may check, am

[google-appengine] Re: form sends information but php no run.

2019-03-31 Thread 'George (Cloud Platform Support)' via Google App Engine
You may try: url: /.* script: auto app.yaml Configuration File page provides related information. All this is above the scope of this discussion group, in fact off-topic. You should post such questions to StackOverfl

[google-appengine] Re: What does beta_settings.cloud_sql_instances do in app.yaml and how may I read this value in my Django settings?

2019-03-01 Thread 'George (Cloud Platform Support)' via Google App Engine
App Engine allows developers to focus on doing what they do best, writing code. Based on Google Compute Engine, the App Engine flexible environment automatically scales your app up and down while balancing the load. Microservices, authorization, SQL and NoSQL databases, traffic splitting, loggi

[google-appengine] Re: How to deploy binary bot to google app engine

2019-02-28 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Narongsak, This should not differ from other apps, in what concerns deployment, so you'll be able to find needed information on the "Building a Node.js App on App Engine" guide page . Often, one can get more insight

[google-appengine] Re: How do you use the Objectify object mapper?

2019-02-28 Thread 'George (Cloud Platform Support)' via Google App Engine
Your survey is somewhat above the scope of this discussion group, in fact off-topic. You should post such questions to StackOverflow, or other similar forums. This forum meant for general discussion on the platform and its services. By contrast, in StackOverflow, you get in contact with experie

<    1   2   3   4   5   6   7   8   9   >