[google-appengine] war size too large (exceeding 32M)

2017-05-05 Thread Kent Tong
Hi, Just the empty webapp created from the Google App Engine archetype creates a war file of 43M. When I upload it, it will give an error saying that it is larger than 32M. Is there anything fundamentally wrong here? Thanks in advance for any help! -- You received this message because you

[google-appengine] Blobstore upload URLs fail intermittently

2017-05-05 Thread Attila-Mihaly Balazs
Hello all, One of our clients is reporting that the blobstore upload URLs created by create_upload_url is failing intermittently with 500 (but retrying works). I created an issue with more details here: https://issuetracker.google.com/issues/38046584 but I'm wondering if anyone else is seeing

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

2017-05-05 Thread 'Jun (Cloud Platform Support)' via Google App Engine
Nice to hear that, Dhandapani! - Jun On Friday, May 5, 2017 at 11:44:01 AM UTC-4, Dhandapani Sattanathan wrote: > > Thanks, Jun, Attila-Mihaly Balazs, > > *Cron jobs working fine. I added this in crontest.php file *$_SERVER[ > 'HTTP_X_APPENGINE_CRON'] =true;. > > Then I added this socket

Re: [google-appengine] App Engine Flex Environment PHP Runtime document root not found

2017-05-05 Thread 'Takashi Matsuo' via Google App Engine
Sorry sent it too early... Do you have any other place to return 403 in the code path in your cron handler? Your logic seems fine. I suspect that there might be another check for signed in state of the user, and now it gives you 403. On Fri, May 5, 2017 at 11:35 AM Takashi Matsuo

[google-appengine] Re: How to create a consistent backup of the datastore?

2017-05-05 Thread 'Nicholas (Google Cloud Support)' via Google App Engine
Interesting. If the map-reduce job reduce job requires writing to the datastore and the article suggests disabling writes while it runs, this would suggest inconsistent expectations about its behavior. Either the map-reduce behavior should not require writes or the article is incorrect and

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

2017-05-05 Thread 'George (Cloud Platform Support)' via Google App Engine
The information provided is relevant. Waiting, at the moment, for input from developers, who might request more information soon. -- 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

[google-appengine] Re: Is logging to console fully supported for app engine flexible?

2017-05-05 Thread 'Zachary Fewtrell' via Google App Engine
Hi E, Looking at our public docs App Engine flexible supports application logging via stdout with no particular framework mentioned (although standard does). Can you provide a link for the docs which require

Re: [google-appengine] App Engine Flex Environment PHP Runtime document root not found

2017-05-05 Thread 'Takashi Matsuo' via Google App Engine
Do you have any other place to return 403 in your cron code path? On Fri, May 5, 2017 at 10:58 AM Yao Li wrote: > You are right, I found the code to check $_SERVER['HTTP_X_APPENGINE_CRON'] > > public function before() { > if ($_SERVER['HTTP_X_APPENGINE_CRON'] != 'true') { >

Re: [google-appengine] App Engine Flex Environment PHP Runtime document root not found

2017-05-05 Thread Yao Li
You are right, I found the code to check $_SERVER['HTTP_X_APPENGINE_CRON'] public function before() { if ($_SERVER['HTTP_X_APPENGINE_CRON'] != 'true') { a\Error::raiseHttp403(); } } It complains with 403 which means it's not from app engine? But I'm sure it's from app engine

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

2017-05-05 Thread Dhandapani Sattanathan
Thanks, Takashi, I tried with CI 3.1.4 with sessions. I changed base URL for GAE. Previous versions can work without changing BASE URL. I added mysqli.default_socket= '/cloudsql/CONNECTION_NAME', As per reply. *In the view I got issues, I fixed, Now working fine CI SESSIONS IN FE.* *thanks

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

2017-05-05 Thread Dhandapani Sattanathan
Thanks, Jun, Attila-Mihaly Balazs, *Cron jobs working fine. I added this in crontest.php file *$_SERVER[ 'HTTP_X_APPENGINE_CRON'] =true;. Then I added this socket mysqli.default_socket= '/cloudsql/CONNECTION_NAME' in php.ini. *After that Cron job working fine using core PHP projects.* On

[google-appengine] Re: Error code 204 returned from Google App Engine - PHP

2017-05-05 Thread 'Adam (Cloud Platform Support)' via Google App Engine
This generally signals an internal error. I'd advise opening a bug on the issue tracker and include your project ID so we can take a look at the app server logs. On Friday, May 5, 2017 at 12:22:52 AM UTC-4, Kelly Ingram wrote: > > Hi, > > I