[google-appengine] You do not have sufficient permissions to view this page

2019-05-13 Thread Stewart Anas
project=blog-227415

it was fine before 4 Hours ago  , but after shutting down my computer and 
turn it on , the GCP gives me this Error 
""You do not have sufficient permissions to view this page"" 
i cant to access neither the home page nor my projects . 

is there Any Solution ?

-- 
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 from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/0a37aa3d-3d42-4cd9-9f63-db0c2c7506f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: gcloud beta app deploy copying files despite gcloudignore

2019-05-13 Thread 'Aref Amiri (Cloud Platform Support)' via Google App Engine
Hi Hisaoki,

We need to investigate this issue further and probably reproduce it on our 
end, and for that reason, I suggest to post this issue on our Public Issue 
Tracker 
page
 
and provide us with the REDACTED output of gcloud beta app deploy 
--verbosity="debug" command, as this can help us with the investigation.

-- 
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 from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/cd408de6-fd7d-4a61-982a-3451d5832a71%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: making app engine app only accessible to gsuite members

2019-05-13 Thread 'Aref Amiri (Cloud Platform Support)' via Google App Engine
Hi Anna,

If you are trying to give access to only internal users within your 
organization, then you can simply create an internal application, when 
crating an OAuth consent screen in your Google Cloud Console (assuming 
domain is verified and GSuite services are enabled). You can also refer to 
this link  if you 
need to authenticate an application, as Cristian mentioned in his comment. 
For any sample code or assistance in programming your application, I'd 
suggest to post your question on Stackoverflow,  
where 
the experts and the community will be able to assist you further.

-- 
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 from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/4eb03e35-c3e4-417e-81e6-d93f257a02d1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: App Engine Flex and SQL Cloud

2019-05-13 Thread 'Aref Amiri (Cloud Platform Support)' via Google App Engine
Hi,

You can follow the instructions provided here 
, as 
it explains the details and provide step-by-step instructions on how to 
connect your PHP application in Flex environment to a Cloud SQL for MySQL.

-- 
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 from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/37535234-6b7b-44bc-8de6-b664a6cc98f1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Having issues with custom domain mapping

2019-05-13 Thread Erick Barron
Hello, I have created installed Mautic using the Deployment manager and I 
was able to configure it the way I want it. I got a corresponding IP 
address which is where my Mautic app is hosted. However, I need to map it 
to a custom domain name or preferably a subdomain and enable SSL to make it 
work with a Wordpress plugin (ConvertPlug.)

I have followed the instructions here: 
https://cloud.google.com/appengine/docs/standard/python/mapping-custom-domains, 
but it's not working for some reason. I have verified my domain name in 
Google's web console, I have gone into settings in App Engine and added a 
"Add a custom domain." I also went into my registrar and added a CNAME 
record which points to hs.googlehosted.com. When I go check for CNAME 
propagation - it says that it's working properly and is fully propagated. 

What else I'm I missing? If it's a subdomain, do I still need to create A 
and AAA records under my registrar? I have tried that and when I do my 
Wordpress site breaks and get the same 404 messages. The only thing that 
remotely works is adding a CNAME to my Mautic app with the IP address, but 
I think that will work with any CNAME and IP address I give it. 

[image: Image 2019-05-12 at 3.31.04 PM.png]

-- 
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 from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/d5bd1834-20c7-4a9a-9f0a-54df6d18d3aa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: When can a app be filled with information

2019-05-13 Thread 'George (Cloud Platform Support)' via Google App Engine
Managing data stored by your app, and the way it gets updated, all depend 
on the way you program your application, and how you plan to use it. If you 
are looking for a solution that comes handy for mobile development, you may 
consider Firebase . Firebase gives you 
functionality like analytics, databases, messaging and crash reporting so 
you can move quickly and focus on your users. 

As mentioned, you'll have to program your application following your 
publishing and data needs. There are examples on the Internet, for instance 
"Firebase: User Sign Up, Login & Data Management 

". 

-- 
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 from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/809d4b41-58a6-4fcb-a055-f161004eb58a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: NonRetriableException: com.google.apphosting.api.ApiProxy$CancelledException: The API call urlfetch.Fetch() was explicitly cancelled.

2019-05-13 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Diego, 

This error is indicative of a async urlfetch call, even warped in another 
call, which did not complete at the time the page finished loading. 
Solution consists in making sure that any async calls complete before your 
load is completed. Being a matter of a call in real time, the error may 
appear even if you didn't change your app's code. 

This discussion group is oriented more towards general opinions, trends, 
and issues of general nature touching App Engine and Cloud SQL. For coding 
and programming architecture, such as urlfetch calls, you may be better 
served in dedicated forums such as stackoverflow, where experienced 
programmers are within reach and ready to help. 

-- 
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 from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/5a627a89-c9f7-49e7-9a17-70eed7c5ceeb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.