Re: [google-appengine] Codeigniter session using database not working in Google App Engine Flexible Environment

2017-05-03 Thread Dhandapani Sattanathan
Hi Takashi, I enabled Cloud SQL API & added beta_settings in my app.yaml. I m using mysqli. I didn't used mysqli.default_socket= '/cloudsql/CONNECTION_NAME in php.ini. Also, I used CodeIgniter 3.0.0. I 'll try with CodeIgniter 3.1.4 with session & mysqli.default_socket in php.ini and Let you k

Re: [google-appengine] Codeigniter session using database not working in Google App Engine Flexible Environment

2017-05-03 Thread Dhandapani Sattanathan
Hi Takashi, Yes without the session, I can connect to the database. All forms working.There are no suspicious logs. On Wednesday, May 3, 2017 at 11:02:58 PM UTC+5:30, Takashi Matsuo (Google) wrote: > > > Hi Dhandapani, > > Are you able to connect to the database in other part of your app? > Are

Re: [google-appengine] Golang Flexible Environment HTTPS only for custom domain

2017-05-03 Thread sitmuhammedali
Well, that's indeed possible but currently when I use *http.ListenAndServeTLS *to serve with https, after the deployment it raises `server encountered a temporary error and could not complete your request.` error on browser and logs say statusDetails: "failed_to_pick_backend". When I use *ht

[google-appengine] Re: Cron.xml not picked up - where do I start looking?

2017-05-03 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Torbjørn, While cron.xml may have been part of the deployed application folder, that doesn't mean that you've run the command to deploy the cron settings. Could you try to run mvn appengine:deployCron And report back the results? I'll just note here while I can, that in general this for

[google-appengine] Re: Google App Engine is slow to deploy, hangs on "Updating service [someproject]..."

2017-05-03 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey E, Alright, now given that I can't look into what operation that is, you should check what it is using gcloud, using the command below: gcloud beta app operations describe d8c581c51b0-e9a02f Possibly it's the same issue discussed above, the creation of the load balancer. Cheers, Nick Cl

[google-appengine] Re: Google App Engine is slow to deploy, hangs on "Updating service [someproject]..."

2017-05-03 Thread E EE
Here is the log file from cloud shell You can see many: Operation [apps/my-project/operations/d8c581c51b0-e9a02f] not complete. Waiting 5s. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving

[google-appengine] Re: Multiple Java Modules / Services in the same project (Flexible environment)

2017-05-03 Thread Antonio Bucciol
Hi George, thank you for your answer. Glad to know it's possible. Anyway I notice you linked manual pages for the PHP environment. Please note that, since within GAE I'm currently programming in Java, when it comes to choosing the language for the doc, I always opt for Java. I would never go a

Re: [google-appengine] Codeigniter session using database not working in Google App Engine Flexible Environment

2017-05-03 Thread 'Takashi Matsuo' via Google App Engine
Hi Dhandapani, Just a quick note, I downloaded CodeIgniter 3.1.4 and the session with the database backed by CloudSQL v2 works. Potential pitfalls are: - You have to enable Cloud SQL API - You have to add beta_

[google-appengine] Re: Google App Engine is slow to deploy, hangs on "Updating service [someproject]..."

2017-05-03 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey E, The log file location is given when you run the gcloud info command. In your case, the output showed: Logs Directory: [/tmp/tmp.ijTCcTysEa/logs] Last Log File: [None] It's odd that there should be "None" for the last log file. Did you run the failing command before running gcloud info?

[google-appengine] Re: Memcache timeout?

2017-05-03 Thread 'Nicholas (Google Cloud Support)' via Google App Engine
As far as I am aware, there is no built in timeout feature for memcache calls. You might be able to implement yourself however, by using the *async* versions of the calls and waiting a given time limit before moving forward with a plan B. You could ignore the result if it returns after the gi

[google-appengine] Re: Multiple Java Modules / Services in the same project (Flexible environment)

2017-05-03 Thread 'George (Cloud Platform Support)' via Google App Engine
Deployment-wise the situation for the standard environment does not differ from the one already covered in the previous answer. "Each service consists of source code and a configuration file . The files used by a service repres

Re: [google-appengine] Cloud shell Java version older than app engine

2017-05-03 Thread E EE
Actually the documentation is all Java 8 with no mention of Java 7. If you go to this page: https://cloud.google.com/appengine/docs/ And expand the "Flexible Environment" node on the left the only Java version listed is 8. Same with app.yaml: https://cloud.google.com/appengine/docs/flexible/java/

[google-appengine] Re: Using a context not associated with a request

2017-05-03 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello William, What version of Go have you installed? If you want to program for the standard environment you need Go version 1.6. -- 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

Re: [google-appengine] Codeigniter session using database not working in Google App Engine Flexible Environment

2017-05-03 Thread 'Takashi Matsuo' via Google App Engine
Hi Dhandapani, Are you able to connect to the database in other part of your app? Are there any suspicious logs? On Wed, May 3, 2017 at 7:59 AM Justin Beckwith wrote: > + a few folks > > On Wed, May 3, 2017 at 2:51 AM, Dhandapani Sattanathan < > dhandapani.sattanat...@ssomens.com> wrote: > >> I

[google-appengine] Using a context not associated with a request

2017-05-03 Thread william
Hello, I was trying to deploy an API using PubSub with AppEngine but I got a "not an App Engine context" error, it's related to the following code: package main import ( "golang.org/x/net/context" "log" "cloud.google.com/go/pubsub" ) var ( ctx context.Context pubsubClient *pubsub.Client

Re: [google-appengine] Re: Cron job failed in Google App Engine Flexible environment

2017-05-03 Thread SN
Thanks, Jun & Attila. I had issues in Cron job only.I 'll give details in the issue tracker and open defect. *Regards,* *SATTANATHAN DPROJECT MANAGER* *SSOMENS SOFTWARE DEVELOPMENT* *04132333229 /230/231* www.ssomens.com [image: C:\Users\SSOMENS-003_2\Desktop\business development material\cu

[google-appengine] Re: Can't find import "google.golang.org/appengine"

2017-05-03 Thread william
It works fine with "goapp deploy", thanks! I have another error, but I'll open another question for that. Thanks again! Le mardi 2 mai 2017 21:29:24 UTC+2, George (Cloud Platform Support) a écrit : > > Hello William, > > Developers are aware of this issue and are actively contributing towards a

Re: [google-appengine] Golang Flexible Environment HTTPS only for custom domain

2017-05-03 Thread 'Justin Beckwith' via Google App Engine
Greetings! Unfortunately, Flex does not respect the handlers section in your app.yaml. If you want to enable automatic https redirection today, you need to handle this inside of your application code. There may be libs that do this for you (Chris?) like there are in other languages. We know this

[google-appengine] Re: Cron job failed in Google App Engine Flexible environment

2017-05-03 Thread 'Jun (Cloud Platform Support)' via Google App Engine
Hi Dhandapani, For now, I suggest that you try the suggestion by Attila-Mihaly given the 404 error you're seeing. If it does not resolve the issue, then it is recommended that you open an issue at the Issue Tracker report with your proje

[google-appengine] Golang Flexible Environment HTTPS only for custom domain

2017-05-03 Thread sitmuhammedali
I have deployed my application without hassle just by running gcloud app deploy command on GCP. Which takes the flexible environment as default. Yesterday I made the necessary customizations to have a custom domain for this app with ssl. Currently it works when I go to any of the following, h

Re: [google-appengine] Codeigniter session using database not working in Google App Engine Flexible Environment

2017-05-03 Thread 'Justin Beckwith' via Google App Engine
+ a few folks On Wed, May 3, 2017 at 2:51 AM, Dhandapani Sattanathan < dhandapani.sattanat...@ssomens.com> wrote: > I m migration my CRM application developed in CodeIgniter Framework from > GAE SE to Google App Engine flexible environment. > > UserService not available in GAE FE.So I used Integr

[google-appengine] Re: Data recovery appspot

2017-05-03 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello James, What project does the blob-store data belong to? Is this still an active project? You seem to own quite a few projects. Has the blob-store data or the app been backed up at any time? You seem to refer to a Datastore upgrade that might have somehow affected th

Re: [google-appengine] Re: Google frontend serves gzipped content even if the client doesn't ask for it

2017-05-03 Thread Attila-Mihaly Balazs
Hello all, This just happened again (and it seems to consistently reproduce), so I filed an issue on the issue tracker: https://issuetracker.google.com/issues/37938470 Additionally I also tried to specify "Accept-Encoding: identity" (ie. curl -v -H 'Accept-Encoding: identity' ...), but the Goo

[google-appengine] Re: Multiple Java Modules / Services in the same project (Flexible environment)

2017-05-03 Thread Antonio Bucciol
Hi, I'm replying to this topic since I think it's cleaner than opening a new topic. I'd like to ask exactly the same original question(s), but for what concerns the GAE Java *Standard *environment. Thank you, Antonio On Friday, April 28, 2017 at 6:43:03 PM UTC+2, George (Cloud Platform Su

Re: [google-appengine] Re: Maven plugins

2017-05-03 Thread Joshua Fox
A question about Google Cloud Tools for Eclipse , given all these changes. 1. If I want to debug my projects without using "remote debugging"? a. Do I need Google Cloud Tools for Eclipse? b. We are using the Cloud-SDK-Based

[google-appengine] Re: Cron job failed in Google App Engine Flexible environment

2017-05-03 Thread Attila-Mihaly Balazs
Hello Dhandapani, If you're seeing a 404 error, it means that the given URL (/web/crontest.php) is not accessible. Could you check your setup to confirm that /web/crontest.php can be accessed? Regards, Attila -- You received this message because you are subscribed to the Google Groups "Googl

[google-appengine] Codeigniter session using database not working in Google App Engine Flexible Environment

2017-05-03 Thread Dhandapani Sattanathan
I m migration my CRM application developed in CodeIgniter Framework from GAE SE to Google App Engine flexible environment. UserService not available in GAE FE.So I used Integrating Google Sign-In into your web app . I need session s

[google-appengine] Cron job failed in Google App Engine Flexible environment

2017-05-03 Thread Dhandapani Sattanathan
I m migrating my PHP application from Google App engine Standard Environment to Flexible environment . My application working fine with database and send grid. But Cron jobs are failed. I could not find what I missed to run a Cr

[google-appengine] Memcache timeout?

2017-05-03 Thread Ivo Bellin Salarin
Hi everybody, Would it be possible to set a timeout on memcache calls? AFAIK, the http implementation (appengine_rpc_httplib2.py) exposes a Send(..., timeout=None) which is actually NOT binded to the memcache/__init__.py deadline. Thus, the deadline is not taken into account. Our need is to set