[google-appengine] Re: Codeigniter V 3.6.1 build failed in google app engine flexible environment

2017-12-22 Thread Dhandapani Sattanathan
Thanks George, Before upgrade PHP 7.2, to use the latest version of PHP in GAE using like this.GAE Flexible environment Codeigniter worked fine. "require": { "php": "7.1.*" }, Now it using PHP 7.2 by default. To use a particular web framework, just add it to composer.json: { "require":

[google-appengine] SSL certificate showing Obsolete connection settings after renewal

2017-12-22 Thread anil jain
Hello, Just before few week back i have renew my ssl certificate for my windows server 2008 R2. To renew ssl certificate i generate CSR through my IIS and then purchase ssl certificate from Symantec. Once i received certificate from Symantec, i installed it on my IIS and when i checked on my do

Re: [google-appengine] Is Google using GAE?

2017-12-22 Thread Autotransfer.jetzt
Still, why a site like google.org is not built in GAE is beyond me but this might be because I'm not a developer. On Thu, Dec 21, 2017 at 7:39 PM, 'Steren Giannini' via Google App Engine < google-appengine@googlegroups.com> wrote: > Hi, let me rephrase: Google uses App Engine for some external pr

[google-appengine] Saml spring java application, Redirecting to http, port: 80 instead of https on app engine

2017-12-22 Thread Ramya k
I am developing an application on Google App Engine in java using spring boot to test IDP SSO. I am using saml2 with spring security. Google App Engine will act as an service provider and for IDP we will use another provider. I have a working demo on my localhost. https://localhost:844

[google-appengine] GCP keeps incurring charges!

2017-12-22 Thread Akshay C.S.
Hello all, I'm new to GCP, and just shifted from Azure. I've been a free user for a while and really liked GCP, hence decided to try other services which require billing to be enabled. I had linked my card a few days back to try out those services. I utilize App Engine for application back-end

[google-appengine] Re: AppEngine FullTextSearch: Custom scoring

2017-12-22 Thread Filipe Caldas
Hi George, The reference to this functionality is in the answer for this question on Stack Overflow, I might try deploying the ElasticSearch cluster and see how that goes. Thanks for your support, On Thursday,

[google-appengine] Re: error: (gcloud.app.create) INTERNAL: Internal error encountered

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
What did you try before running "gcloud app create", exactly? What were the previous steps, in order? What is the output of gcloud info? You have created a project and installed the Cloud SDK. Have you initialized the SDK? You can find related information in the "Initializing Cloud SDK" onli

Re: [google-appengine] Is Google using GAE?

2017-12-22 Thread 'Steren Giannini' via Google App Engine
I do not know the specifics of google.org. I want to say that a static website with no dynamic content can entirely be served by hosting static assets on a global CDN. I encourage you to take a look at solutions like Cloud Storage + Cloud CDN

[google-appengine] Re: Annotation processors must be explicitly declared now. The following dependencies on the compile classpath are found to contain annotation processor. Please add them to the an

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Is this related to Android Studio? If so, you may try to disable the annotation processor error check, as indicated in the "Disable the annotation processor error check" sub-chapter of the "Migrate to Android Plugin for Gradle 3.0.0" document

[google-appengine] Re: Saml spring java application, Redirecting to http, port: 80 instead of https on app engine

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Ramya, This group is meant for general discussion about the platform, and voicing of opinions. For such technical details as in your #1 post above, you will be surely better served if you post on serverfault or similar sites, where experts are active and may p

[google-appengine] Re: GCP keeps incurring charges!

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Akshay, You are entitled to a maximum limit of $300 during free trial. Expenses are displayed as you noticed. Your free trial is paused when you reach the $300 level of charges, and you have the option to upgrade to a paid account, should you so wish. The trial is free and you will not b

Re: [google-appengine] Is Google using GAE?

2017-12-22 Thread Autotransfer.jetzt
OK, will do. Many thanks. On Fri, Dec 22, 2017 at 5:18 PM, 'Steren Giannini' via Google App Engine < google-appengine@googlegroups.com> wrote: > I do not know the specifics of google.org. > > I want to say that a static website with no dynamic content can entirely > be served by hosting static as

[google-appengine] Re: error: (gcloud.app.create) INTERNAL: Internal error encountered

2017-12-22 Thread R. K. Nair
On Friday, December 22, 2017 at 10:11:50 AM UTC-6, George (Cloud Platform Support) wrote: > > What did you try before running "gcloud app create", exactly? What were > the previous steps, in order? > > *What is the output of gcloud info? * > > C:\TEMP>gcloud info Google Cloud SDK [183.0.0] P

Re: [google-appengine] GAE (java) appstats - any way to see what the actual cache keys are for memcache calls? Why is every 5th or 6th seemingly-identical cache get taking way longer? Is there an actu

2017-12-22 Thread 'Les Vogel' via Google App Engine
Hi Keith, You can look at the individual requests to see how long things take, and subtract out any serial requests you make and that's how long it's in your code. You can, of course, add logging around areas that interest you to figure out how long they are taking. (They should show up in the r

[google-appengine] Re: error: (gcloud.app.create) INTERNAL: Internal error encountered

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
What version of .NET did you install? The 2.1.3 version is indicated in the Quickstart . -- You received this message because you are subscribed to the Google Groups "Goo

[google-appengine] Re: error: (gcloud.app.create) INTERNAL: Internal error encountered

2017-12-22 Thread R. K. Nair
.NET Core 1.0, hello world application downloaded from google Google Cloud tools for Visual Studio, Version 1.2.10.0 On Friday, December 22, 2017 at 2:31:31 PM UTC-6, George (Cloud Platform Support) wrote: > > What version of .NET did you install? The 2.1.3 version >

[google-appengine] Re: SSL certificate showing Obsolete connection settings after renewal

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
On your server, you might have a version of OpenSSL that was compiled without support for ECC (and thus ECDHE). You can run the nmap --script ssl-enum-ciphers -p 443 name-of-your-site to see what ciphers are supported on your server, and in which order. For more detail you may read the preferre

[google-appengine] Re: Codeigniter V 3.6.1 build failed in google app engine flexible environment

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Most grateful for your post above, that contains the detailed solution. People affected by the same issue will find your solution and profit from the time saved this way. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe fro

[google-appengine] Re: error: (gcloud.app.create) INTERNAL: Internal error encountered

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
If you check the "Quickstart for .NET in the App Engine Flexible Environment" and click on the "Install the .NET Core SDK, LTS version" link , you'll notice that the indicated version is 2.1.3. By contrast, your version is 1.0. -- You receive

[google-appengine] Visual Studio, Google Cloud deployment

2017-12-22 Thread R. K. Nair
Just created a simple application using Visual Studio 2017, dotnet framework 4.5.2, When trying to deploy, the following prompt appears, but the vm instance dropdown is blank. I have already created a project, and there is a vm existing already underneath. Why it doesn't show up in the dropdo