[google-appengine] Re: Started getting Error code 203 24 hours ago

2020-10-21 Thread NP
Hi,

I only see the option to create a public issue. How do I create a private 
issue as you said

On Wednesday, October 21, 2020 at 12:33:17 PM UTC-7 Elliott (Cloud Platform 
Support) wrote:

> Hello,
>
> The best way to move forward to report an issue is to create a private Google 
> Issue Tracker  to 
> investigate the error you are reporting since Google Groups is meant to 
> have general discussions. At that point, you may share project specific 
> information if needed.
>
> There are several options to choose from on that page. If you need help 
> choosing one, you may respond to this message and we will guide you then.
>
>
> On Wednesday, October 21, 2020 at 10:05:03 AM UTC-4 NP wrote:
>
>> Starting from yesterday, I now get the following error when I try to 
>> load  my home page. This started happening after I redeployed some changes
>>
>> *.The process handling this request unexpectedly died. This is likely 
>> to cause a new process to be used for the next request to your application. 
>> (Error code 203).*
>>
>> This has nothing to do with my code because everything works on my local 
>> machine. I even changed the handler on my home page route to just return 
>> "Done"  but I'm still getting the error i.e. I currently have
>>
>> @app.route("/")
>> def homePageHandler():
>> return "Done"
>>
>>
>>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/90db2e63-85e8-4fbc-a08e-9eddacd12144n%40googlegroups.com.


[google-appengine] Re: Help with installation on mac please

2020-10-21 Thread 'Elliott (Cloud Platform Support)' via Google App Engine
Hello Jen,

Are you trying to install Google Cloud SDK on your Mac computer? Can you 
please provide us with more detail to move this along?

Thank you.

On Wednesday, October 21, 2020 at 5:21:05 PM UTC-4 jennif...@gmail.com 
wrote:

> Hi all!  I'm trying to install on my macbook pro - running catalina 
> 10.15.  I have followed all the instructions and when I try to deploy from 
> my command line (yes, I am in my coursebuilder folder) with bash 
> ./scripts/deploy.sh  (yes, i am changing that too my id and 
> dropping the <>)...  I receive the following error after Installing PyCrypto
>
> error:  must supply either home or prefix/exec-prefix -- not both
>
> and then I get the command line again, my website doesn't deploy and I get 
> no-where..  Any ideas? 
>
> Many thanks in advance,
>
> -Jen
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/1590e7e5-aa0f-48bd-a2f2-639f0d335bb8n%40googlegroups.com.


[google-appengine] Help with installation on mac please

2020-10-21 Thread Jennifer Gupta
Hi all!  I'm trying to install on my macbook pro - running catalina 10.15.  
I have followed all the instructions and when I try to deploy from my 
command line (yes, I am in my coursebuilder folder) with bash 
./scripts/deploy.sh  (yes, i am changing that too my id and 
dropping the <>)...  I receive the following error after Installing PyCrypto

error:  must supply either home or prefix/exec-prefix -- not both

and then I get the command line again, my website doesn't deploy and I get 
no-where..  Any ideas? 

Many thanks in advance,

-Jen

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/2d3d1306-8a18-4329-b89c-807d3167aca3n%40googlegroups.com.


[google-appengine] Re: Started getting Error code 203 24 hours ago

2020-10-21 Thread 'Elliott (Cloud Platform Support)' via Google App Engine
Hello,

The best way to move forward to report an issue is to create a private Google 
Issue Tracker  to 
investigate the error you are reporting since Google Groups is meant to 
have general discussions. At that point, you may share project specific 
information if needed.

There are several options to choose from on that page. If you need help 
choosing one, you may respond to this message and we will guide you then.


On Wednesday, October 21, 2020 at 10:05:03 AM UTC-4 NP wrote:

> Starting from yesterday, I now get the following error when I try to load  
> my home page. This started happening after I redeployed some changes
>
> *.The process handling this request unexpectedly died. This is likely 
> to cause a new process to be used for the next request to your application. 
> (Error code 203).*
>
> This has nothing to do with my code because everything works on my local 
> machine. I even changed the handler on my home page route to just return 
> "Done"  but I'm still getting the error i.e. I currently have
>
> @app.route("/")
> def homePageHandler():
> return "Done"
>
>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/4da4c45a-a496-4f0e-82a6-f557eb82b5c1n%40googlegroups.com.


[google-appengine] Re: Google App Engine - Read JSON file from application code

2020-10-21 Thread 'Sergio Llopis' via Google App Engine
Hello, 

I understand that you are trying to read a JSON file from a Go application 
that is hosted on App Engine.

The error message [1] that you are seeing can be due mainly to two reasons:

1 - The file does not exist in the filesystem.
2 - The file exists in the filesystem but the given path is wrong.

Please note that the App Engine documentation [2] states that static files 
are uploaded and handled separately from application files. 

This means that if you have a file which you want to read from your Go 
code, the file must not match any static file pattern and cannot be in a 
folder defined as a static directory, or else the file will be considered 
to be a static file and will not be deployed along with your application 
code. 

I can see that the Stackoverflow question [3] has already an answer that 
was upvoted a by a community user. Please let me know if the answer 
correctly addresses your issue and whether it helps you. 

Thank you!

[1]: error loading config file: open go-config.json: no such file or 
directory
[2]: 
https://cloud.google.com/appengine/docs/standard/go/config/appref#handlers_element
[3]: 
https://stackoverflow.com/questions/64455222/google-app-engine-read-json-file-from-application-code
On Wednesday, October 21, 2020 at 4:28:39 AM UTC+2 
law...@euterpesolutions.com wrote:

> Can anyone help me with this problem?
>
>
> https://stackoverflow.com/questions/64455222/google-app-engine-read-json-file-from-application-code

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/398b01ac-cab7-40e2-b112-f396472d6a5en%40googlegroups.com.


[google-appengine] Started getting Error code 203 24 hours ago

2020-10-21 Thread NP
Starting from yesterday, I now get the following error when I try to load  
my home page. This started happening after I redeployed some changes

*.The process handling this request unexpectedly died. This is likely 
to cause a new process to be used for the next request to your application. 
(Error code 203).*

This has nothing to do with my code because everything works on my local 
machine. I even changed the handler on my home page route to just return 
"Done"  but I'm still getting the error i.e. I currently have

@app.route("/")
def homePageHandler():
return "Done"


-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/36c043ab-c931-429d-b072-763883150e9fn%40googlegroups.com.


[google-appengine] Re: How to re-install wordpress on VM Instance

2020-10-21 Thread 'Mohammad I (Cloud Platform Support)' via Google App Engine
Please also be careful from sharing any project specific Information to the 
public as it can be harmful for you as I have seen you have shared your 
Project Name and Compute Engine instance name. 

On Wednesday, October 21, 2020 at 7:47:34 AM UTC-4 Mohammad I (Cloud 
Platform Support) wrote:

> Hello, 
>
> I have come across this Bitnami Community thread 
> 
>  
> which has discussed similar issues like yours. The thread has suggested 
> launching a new WordPress instance, and migrating the desired content there.
>
> This guide  
> explains how to migrate a Wordpress instance and for maintaining the public 
> IP, you should use static IP addresses. This document 
> 
>  
> explains how to do that. 
>
> I have noticed this issue is more similar to Compute Engine than App 
> Engine. I have also noticed you have created this StackOverflow thread 
> 
>  
> for the same issue where you have already responded as well. 
>
> In case there are any technical issues or you would like to request any 
> feature you can report it at the Public Issues by selecting the right 
> component here 
> . 
>
> Please also note that Google Groups forum is meant for general discussion 
> of the platform, not specific technical issues. You can find more info 
> about Community Support Overview on Google Groups here 
> 
> .
>
> On Monday, October 19, 2020 at 11:35:39 AM UTC-4 31th...@gmail.com wrote:
>
>> Hello there,
>> I would like to know how can I re-install a fresh WordPress on the same 
>> VM instance and the same IP address.
>>
>> https://prnt.sc/v1x2rp
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/60bdf7fd-4948-4e27-80ff-b1902dc0c354n%40googlegroups.com.


[google-appengine] Re: How to re-install wordpress on VM Instance

2020-10-21 Thread 'Mohammad I (Cloud Platform Support)' via Google App Engine


Hello, 

I have come across this Bitnami Community thread 

 
which has discussed similar issues like yours. The thread has suggested 
launching a new WordPress instance, and migrating the desired content there.

This guide  
explains how to migrate a Wordpress instance and for maintaining the public 
IP, you should use static IP addresses. This document 

 
explains how to do that. 

I have noticed this issue is more similar to Compute Engine than App 
Engine. I have also noticed you have created this StackOverflow thread 

 
for the same issue where you have already responded as well. 

In case there are any technical issues or you would like to request any 
feature you can report it at the Public Issues by selecting the right 
component here 
. 

Please also note that Google Groups forum is meant for general discussion 
of the platform, not specific technical issues. You can find more info 
about Community Support Overview on Google Groups here 
.

On Monday, October 19, 2020 at 11:35:39 AM UTC-4 31th...@gmail.com wrote:

> Hello there,
> I would like to know how can I re-install a fresh WordPress on the same VM 
> instance and the same IP address.
>
> https://prnt.sc/v1x2rp
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/c2e3a744-f442-4b88-9ff1-0bc4becd8b35n%40googlegroups.com.