[google-appengine] I want to use gcp open minecraft server help me!

2017-04-24 Thread
I have set up but Server port 25565 can not be connected help me QAQ Please send me pictures to help me will be more detailed, thank you! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving ema

[google-appengine] App Engine Flex overwriting public folder permissions on deploy

2017-04-24 Thread Donatas Petrauskas
I'm deploying a PHP app on the App Engine Flexible environment. I have a command in my post-deploy-cmd scripts in my composer.json file to set permissions for the public/app folder (chmod -R 755 public\/app). However, when I deploy my app, the entire public folder's permissions get overwritten

Re: [google-appengine] App Engine Flex overwriting public folder permissions on deploy

2017-04-24 Thread 'Justin Beckwith' via Google App Engine
Greetings! Adding a few folks from the PHP team who will be able to help :) On Sun, Apr 23, 2017 at 7:19 PM, Donatas Petrauskas wrote: > I'm deploying a PHP app on the App Engine Flexible environment. I have a > command in my post-deploy-cmd scripts in my composer.json file to set > permissions

[google-appengine] Temporary storage of data bigger than 1 Mega

2017-04-24 Thread Shachar Grembek
Hi, I have a resource file that its size is 1.6 Mega (A Machine learning model). The data is required and needs to be loaded for every API call I receive, but loading the file to memory takes around 8 seconds. So I would like to find a way to have the data available in a more efficient manner.

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

2017-04-24 Thread Yao Li
1. Cloud SQL It doesn't expose mysql unix_socket in the company framework but host, I did try to config host as the cloud sql instance ip or 'localhost' for host parameter, but nether of them work. Can I use host (cloud sql instance ip) for mysql configuration in this case or only unix_socket wo

[google-appengine] App Engine App cannot connect to Cloud SQL instance

2017-04-24 Thread Karoly Kantor
My python App Engine app cannot connect to my brand new Cloud SQL instance. Log says: Not authorized to access instance They are in the same project, Google doc says it should be authorized by default. Please help me with any ideas on what might have gone wrong. Thank you. -- You receiv

Re: [google-appengine] Temporary storage of data bigger than 1 Mega

2017-04-24 Thread 'Justin Beckwith' via Google App Engine
While I'm sure there are other options you should explore first, one idea is to look at using App Engine Flexible. The instances in flex tend to last longer [o(days)], and the data could be cached on the instance. Depending on the APIs and services you're using, a change like this could be pretty

[google-appengine] Re: Feature Request: Serve content from default google storage bucket without cross origin javascript

2017-04-24 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Darian, How would you like to serve files from storage, exactly? Who would be the recipient, in that case? You may consider opening a feature request in the issue tracker , where developers would evaluate it and decide upon its implementation. More de

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

2017-04-24 Thread Yao Li
I want to install New Relic agent in the custom image (php-nginx) to monitor app level performance, as the code in php-docker (deb-package-builder) repo, GAE flex env is based on Debian, is there any libs or scripts to install software (new relic) in this environment? https://github.com/Google

[google-appengine] Re: App Engine App cannot connect to Cloud SQL instance

2017-04-24 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Karoly, Have you granted access to your app engine application? You may find an example in the “Using Google Cloud SQL” online document . Have you followed the indicated steps or a similar procedure? More detail on y

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

2017-04-24 Thread 'Takashi Matsuo' via Google App Engine
Hi Yao, *1. CloudSQL* Yes, we recommend that you use the unix socket. If you're using mysql_connect, you may be able to use 'localhost:/cloudsql/CONNECTION_NAME' as the host name. ```php.ini extension=mysql.so sql.safe_mode=false ``` Then: $db = mysql_connect('localhost:/cloudsql/CONNECTION_NAM

[google-appengine] Re: App Engine App cannot connect to Cloud SQL instance

2017-04-24 Thread Karoly Kantor
Thanks George for the reply. I am told by the 2nd generation SQL Google page that my application is given access by default because it is in the same project. More info: 1. I am using python and the web2py framework in App Engine. 2. The app works perfectly with Google Datastore but i want to u

[google-appengine] Re: I want to use gcp open minecraft server help me!

2017-04-24 Thread 'Jun (Cloud Platform Support)' via Google App Engine
Hi 楓, It looks you're following the steps from Setting up a Minecraft server on Google Compute Engine , and you encountered an issue at the stage of "Allow clients to access the Minecraft server" (allowed ports). In

[google-appengine] Re: App Engine Flex overwriting public folder permissions on deploy

2017-04-24 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Is there a specific reason why you require the need to perform writes to your 'public/app' folder? Scalable applications in the cloud should normally never perform writes to the local filesystem, as data written in an App Engine instance is released with the instance when it is no longer needed

[google-appengine] AppEngine Custom Domain Cannot Be Reached By Some Operators

2017-04-24 Thread Tolga Tanrıverdi
Hi I've created a custom domain and ssh key for my appengine app, it works fine with lots of operators in our country(Turkey). But only with vodafone LTE the custom domain doesnt work, so the people who are using vodafone network can only use *.appspot.com domain to use our application. For tes

Re: [google-appengine] Re: App Engine Flex overwriting public folder permissions on deploy

2017-04-24 Thread 'Takashi Matsuo' via Google App Engine
Hi Donatas, What's the use case of writing to the public directory? If it is just for writing temporary file (like temporary cache for performance), you can still use other directories (/tmp, /app/otherdir etc). If you want to dynamically update the content in the public directory, unfortunately i

Re: [google-appengine] Re: App Engine Flex overwriting public folder permissions on deploy

2017-04-24 Thread Donatas Petrauskas
I use PyroCMS and it requires public/app permissions to write admin area image thumbnails and public assets like css and js files. They can be lost, as they get regenerated if the files are not there. However, I do agree with Jordan, there shouldn't be any writes to the public folder on prod, b

[google-appengine] Re: AppEngine Custom Domain Cannot Be Reached By Some Operators

2017-04-24 Thread 'Jun (Cloud Platform Support)' via Google App Engine
Hi Tolga, If I understand correctly, you've registered your custom domain, and setup the appropriate SSL Cert for the domain (instead of SSH key?) on your App Engine app (however, it shows there is no SSL cert when going to your custom domain). Do you see incoming request from the IPs of Vodafo

[google-appengine] Re: need to connect App Engine Std to GCE via internal IP address

2017-04-24 Thread Robert Dyas
Question: will the IP address from App Engine Std appear as though its on the internal GCE network? Hopefully yes so that its easy to filter incoming requests as coming from a trusted source or not. On Sunday, April 23, 2017 at 5:27:25 PM UTC-4, Lorne Kligerman wrote: > > Hey folks, > > I'm glad

[google-appengine] Re: App Engine App cannot connect to Cloud SQL instance

2017-04-24 Thread 'George (Cloud Platform Support)' via Google App Engine
Your first generation CloudSQL instance has the app name as an authorized user, the second generation doesn’t. What happens if you create a service account for your app on the second generation instance? Your logs show connection errors to the instance from a user without password. -- You

[google-appengine] Re: Cronjobs and tasks not firing all of a sudden

2017-04-24 Thread 'Jun (Cloud Platform Support)' via Google App Engine
Hi Richard, Nice to hear it starts working as normal (indicating possibly a transient issue at that time). That said, please feel free to report to the Issue Tracker next time you would encounter such issue again, thanks! - Jun On Satu

[google-appengine] Re: AppEngine Custom Domain Cannot Be Reached By Some Operators

2017-04-24 Thread Tolga Tanrıverdi
Hi Jun You are right I meant to say SSL instead of SSH The actual problem is browser doesnt say its an SSL problem , it only waits for 1-2 minutes then doesnt show anything when I try to access our website from Vodafone. But If I try to access to same site with *.appspot.com URL everything work

Re: [google-appengine] Temporary storage of data bigger than 1 Mega

2017-04-24 Thread Shachar Grembek
Thanks for the suggestion, but as you mentioned, it would be too extreme to redesign the architecture, just because of that On Monday, April 24, 2017 at 6:53:24 PM UTC+3, Justin Beckwith wrote: > > While I'm sure there are other options you should explore first, one idea > is to look at using Ap

Re: [google-appengine] Re: App Engine Flex overwriting public folder permissions on deploy

2017-04-24 Thread 'Takashi Matsuo' via Google App Engine
Hi Donatas, We're re-designing the image build process. I think we should provide a way to opt out from the permission locking behavior. I'll let you know when it's available. For a time be-ing, you can use the custom runtime. ```app.yaml env: flex runtime: custom ``` Dockerfile ``` FROM gcr.i

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

2017-04-24 Thread Yao Li
1. *CloudSQL* I did connect successfully by setting default socket in php.ini. Thanks. I copied data from a 1st generation cloud sql instance to a 2nd one, data is exactly same but the size is doubled, is it because of the 2nd generation one specific attribute? 2. *Log* I did choose the lognam

Re: [google-appengine] Re: need to connect App Engine Std to GCE via internal IP address

2017-04-24 Thread 'Lorne Kligerman' via Google App Engine
More details to come, however we will provide a mechanism to be sure that only your App Engine app can connect to your own GCE VMs. On Mon, Apr 24, 2017 at 1:41 PM, Robert Dyas wrote: > Question: will the IP address from App Engine Std appear as though its on > the internal GCE network? Hopefull

Re: [google-appengine] Re: need to connect App Engine Std to GCE via internal IP address

2017-04-24 Thread Robert Dyas
Yes, but in addition to that consider it a feature request that the incoming IP address from GAE std to GCE will be easily identifiable (or a range). The reason for this is we have some servers that will still be accepting requests over their external IP that will be required to be encrypted, w

Re: [google-appengine] Re: need to connect App Engine Std to GCE via internal IP address

2017-04-24 Thread 'Lorne Kligerman' via Google App Engine
Understood, thanks for the write up! On Mon, Apr 24, 2017 at 4:45 PM, Robert Dyas wrote: > Yes, but in addition to that consider it a feature request that the > incoming IP address from GAE std to GCE will be easily identifiable (or a > range). The reason for this is we have some servers that

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

2017-04-24 Thread 'Takashi Matsuo' via Google App Engine
Hi Yao, > I copied data from a 1st generation cloud sql instance to a 2nd one, data is exactly same but the size is doubled, is it because of the 2nd generation one specific attribute? Sorry I'm not an expert on that topic. Maybe you can try google-cloud-sql-discuss

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

2017-04-24 Thread Yao Li
I'm interested in App Engine Flex PHP alpha version and did fill the register form but have not received any response. On Monday, April 24, 2017 at 6:32:12 PM UTC-7, Takashi Matsuo (Google) wrote: > > > Hi Yao, > > > I copied data from a 1st generation cloud sql instance to a 2nd one, > data is

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

2017-04-24 Thread 'Takashi Matsuo' via Google App Engine
Adding our PM On Mon, Apr 24, 2017 at 8:29 PM Yao Li wrote: > I'm interested in App Engine Flex PHP alpha version and did fill the > register form but have not received any response. > I think you are referring to the alpha program of the memcache service. If that's the case, Justin knows more

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

2017-04-24 Thread Yao Li
Yes, I'm interested in the alpha version and new log service. I tried Redis Lab Memcache, it doesn't support memcache, only memcached? On Monday, April 24, 2017 at 8:45:36 PM UTC-7, Takashi Matsuo (Google) wrote: > > Adding our PM > > On Mon, Apr 24, 2017 at 8:29 PM Yao Li > > wrote: > >> I'm i

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

2017-04-24 Thread 'Takashi Matsuo' via Google App Engine
Hi Yao, Alright, I've just sent you the instructions. Thanks! On Mon, Apr 24, 2017 at 9:17 PM Yao Li wrote: > Yes, I'm interested in the alpha version and new log service. > > I tried Redis Lab Memcache, it doesn't support memcache, only memcached? > > > On Monday, April 24, 2017 at 8:45:36 PM

[google-appengine] A huge drawback of the new google issue tracker

2017-04-24 Thread Attila-Mihaly Balazs
I just realized this: the new issue tracker (https://issuetracker.google.com/) requires login to see any of the issues (so there are no longer any "public" issues per-se) and its robots.txt disallows any crawling. While I appreciate the sentiment behind this (from what I understand the issue tr

[google-appengine] Re: App Engine App cannot connect to Cloud SQL instance

2017-04-24 Thread Karoly Kantor
Thanks again, George. It might be that the web2py data base abstraction layer I am using was built for 1st Gen only? I will try to ask them. Maybe it is not passing a user name / password, at least I cannot find a place to set it. Is it the case that the app should pass the user name/password f

[google-appengine] Re: A huge drawback of the new google issue tracker

2017-04-24 Thread pdknsk
I don't understand why Google didn't just migrate to Monorail. https://bugs.chromium.org/hosting/ I've noticed a few other minor problems, like the unchangeable default setting being issues assigned to you, which obviously yields no results for non-Googlers. Also you can filter by clicking on c

[google-appengine] Re: A huge drawback of the new google issue tracker

2017-04-24 Thread pdknsk
PS. Just some additional semi-related information for those interested: Monorail is OSS and runs on App Engine. https://chromium.googlesource.com/infra/infra/+/master/appengine/monorail -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To u