Re: [google-appengine] Re: Maven plugins

2017-04-30 Thread Joshua Fox
Thank you. That's useful. On Sun, Apr 30, 2017 at 9:48 PM, 'Adam (Cloud Platform Support)' via Google App Engine wrote: > To answer your questions: > >- Is it recommended over the other one? > >It's actually recommended to use the App Engine standalone SDK based >plugin for now, due

[google-appengine] Re: PHP app engine cannot connect to cloud sql

2017-04-30 Thread Abinav Chandar
Can this only be done with the PDO or can it also be done with mysql_connect() On Thursday, September 29, 2016 at 5:11:22 PM UTC-5, Kevin Lau wrote: > > > down votefavorite > > > I am trying to con

[google-appengine] Google Cloud PHP connection

2017-04-30 Thread Abinav Chandar
Hello my php connection script to connect to cloud sql is not working does anyone know how to fix this problem? $conn = mysql_connect("/cloudsql/project:us-central1:project-instance", "root", "user2017"); -- You received this message because you are subscribed to the Google Groups "Google App

[google-appengine] Re: Maven plugins

2017-04-30 Thread 'Adam (Cloud Platform Support)' via Google App Engine
To answer your questions: - Is it recommended over the other one? It's actually recommended to use the App Engine standalone SDK based plugin for now, due to some issues with the development server in the Cloud SDK. See also the re

[google-appengine] Re: many "Process terminated because the request deadline was exceeded. . (Error code 123)" errors for my go app recently

2017-04-30 Thread 'Adam (Cloud Platform Support)' via Google App Engine
Good to hear you found the problem. Based on the information given, the only thing a reader would be able to deduce is that your request was taking too long for some reason and went over the 60 second deadline

[google-appengine] Re: server not connect to aspmx.l.google.com 25

2017-04-30 Thread 'Adam (Cloud Platform Support)' via Google App Engine
Further to the above, aspmx.l.google.com is an inbound mail relay for GSuite / Google Apps , so can only route mail to GSuite domain users or Gmail users. On Sunday, April 30, 2017 at 12:24:11 PM UTC-4, Adam (Cloud Platform Support) wrote: > > S

[google-appengine] Re: server not connect to aspmx.l.google.com 25

2017-04-30 Thread 'Adam (Cloud Platform Support)' via Google App Engine
Socket connections to most Google IPs are blocked from App Engine , which includes aspmx.l.google.com. However you can connect to smtp.gmail.com on port 465 or 587, which is the recommended way to send GSuite domain email from an ap

[google-appengine] Re: gcloud vs. goapp for GO appengine

2017-04-30 Thread Steffen N
Hey Tim, no you are not the only one. Im facing the same issues. Im also having 2 'goapps' just like yours and when I run 'goapp serve' inside a project folder where I have my app.yaml it says permission denied. On Saturday, April 8, 2017 at 5:57:29 PM UTC+2, Tim Becker wrote: > > Sorry if I'm

[google-appengine] Re: many "Process terminated because the request deadline was exceeded. . (Error code 123)" errors for my go app recently

2017-04-30 Thread Tapir
Aha, I think I found the issue. It is a bug in code. The code is modified two week ago. But it is weird that only the oldest log at April 24th prints the program panic stack traces. Other logs don't print the stack traces. On Sunday, April 30, 2017 at 9:55:18 PM UTC+8, Tapir wrote: > > I can't g

[google-appengine] Re: many "Process terminated because the request deadline was exceeded. . (Error code 123)" errors for my go app recently

2017-04-30 Thread Tapir
btw, the cloud log in firefox is almost unusable. It is laggy and often refreshes unexpectedly. On Sunday, April 30, 2017 at 11:05:30 PM UTC+8, Tapir wrote: > > The problem started happening since April 24th. > It never happened before this date. > The app is very simple and I didn't modify it muc

[google-appengine] Re: many "Process terminated because the request deadline was exceeded. . (Error code 123)" errors for my go app recently

2017-04-30 Thread Tapir
The google cloud log is almost not usable in firefox. On Sunday, April 30, 2017 at 9:55:18 PM UTC+8, Tapir wrote: > > I can't get what is problem from the log: > > E GET 500 0 B 100.9 s Googlebot 2 / GET 500 0 B 100.9 s > Googlebot 2 > 590210c200ff08698603ab0f540001737e74617069722d67616d657300

[google-appengine] Re: many "Process terminated because the request deadline was exceeded. . (Error code 123)" errors for my go app recently

2017-04-30 Thread Tapir
The problem started happening since April 24th. It never happened before this date. The app is very simple and I didn't modify it much a week before and after April 24th. On Sunday, April 30, 2017 at 9:55:18 PM UTC+8, Tapir wrote: > > I can't get what is problem from the log: > > E GET 500 0 B

[google-appengine] many "Process terminated because the request deadline was exceeded. . (Error code 123)" errors for my go app recently

2017-04-30 Thread Tapir
I can't get what is problem from the log: E GET 500 0 B 100.9 s Googlebot 2 / GET 500 0 B 100.9 s Googlebot 2 590210c200ff08698603ab0f540001737e74617069722d67616d6573000132000100 66.249.75.176 - - [27/Apr/2017:23:39:46 +0800] "GET / HTTP/1.1" 500 - - "Mozilla/5.0 (compatible; Googlebot/2.1

[google-appengine] Re: Maven plugins

2017-04-30 Thread Joshua Fox
On Sun, Apr 30, 2017 at 4:29 PM, Joshua Fox wrote: > What is the difference between these two Maven plugins? > > > - Based on the Google App Engine SDK for Java > > >- com.google.*appengine*::appengine:appengine-maven-plugin

[google-appengine] Maven plugins

2017-04-30 Thread Joshua Fox
What is the difference between these two Maven plugins? - Based on the Google App Engine SDK for Java - com.google.*appengine*::appengine:appengine-maven-plugin - Older - Cloud-SDK Based