Re: [google-appengine] Re: Redirected custom domain from Google does not show in browser address bar

2021-04-27 Thread Glenn Richard

Thanks for your feedback, NoCommandLine. Personally, it's fine with me if 
someone finds a way into my site via the appspot domain name, so long as 
the custom name prevails in the address bar when it is used as the access 
method. But for those who read this thread and wish to redirect visitors 
who get to their sites via their appspot domain, where is there 
documentation that describes how to accomplish this redirect?
On Tuesday, April 27, 2021 at 11:36:21 AM UTC-4 NoCommandLine wrote:

> Looks good. Glad you figured it out.
>
> *Note:* If for some reason someone goes directly to the .appspot link, it 
> won’t automatically redirect to your custom domain. You need to have code 
> that will handle this redirect. However, some people don’t worry about this 
> based on the argument that the probability of someone going directly to the 
> appspot link is very low because the person would need to know the 
> Application Id, and also know it’s being hosted on GAE.
>
>   * .* NoCommandLine *..*
>  https://nocommandline.com
>
> *A GUI for Google App Engine*
>
>
>
>
>
>
> On Apr 27, 2021, at 5:52 AM, Glenn Richard  wrote:
>
> Thanks, NoCommandLine, and David for your help. The redirect works 
> correctly now. Following your advice, with assistance from links you 
> provided, I re-performed the mapping process from scratch.
>
> For the benefit of others, I am providing the following summary of the 
> steps that I believe were relevant:
>
>- At the top of the page, the pull-down menu was used to select the 
>project for which the designated custom domain was to be applied.
>- From the navigation menu in the upper left, I scrolled down to the *App 
>Engine* submenu in the *COMPUTE* section, and chose *Setting* from the 
>list that appeared.
>- I selected the *Custom domains* tab.
>- From there, I clicked on *Add a custom domain, *then selected the 
>appropriate custom domain previously purchased from Google from the 
>pull-down menu.
>- I mapped both the* naked domain* and the *www subdomain*. For the 
>naked domain, this created four *A* records and four ** records. 
>For the www subdomain, it created one *CNAME* record. These can be 
>viewed at any time via the *Add a custom domain* tab.
>- Offline, I *edited the app.yaml file* for the project to add the 
>following:
>
> - url: /.*
>   secure: always
>   redirect_http_response_code: 301
>   script: auto
>
>
>- Back online, I uploaded the revised *app.yaml* file and redeployed 
>the project.
>- To avoid the hazard of having the cached version of the appspot url 
>from appearing in the address bar, I removed that address from the history 
>in ny browser, which is Google Chrome.
>
> After that, it works, thanks! If any of the above is inaccurate or 
> requires clarification, please advise.
>
>
>
>
> On Monday, April 26, 2021 at 6:38:55 PM UTC-4 NoCommandLine wrote:
>
>> You need to map both the naked domain and the sub domain. See this 
>> StackOverflow <https://stackoverflow.com/a/66268646/15211203> response 
>> (you can ignore the SSL bit)
>>
>> On Monday, April 26, 2021 at 3:25:51 PM UTC-7 Glenn Richard wrote:
>>
>>> Hi David,
>>>
>>> So,delving a little more into the problem, if I type the www subdomain 
>>> of the custom name into the address bar, the custom name does appear there 
>>> after redirection occurs. This leads me to believe that the problem is that 
>>> I need to create another CNAME record for the naked domain. Where should 
>>> that be done?
>>>
>>> On Mon, Apr 26, 2021 at 2:33 PM 'David (Cloud Platform Support)' via 
>>> Google App Engine  wrote:
>>>
>>>> Hello,
>>>> After properly following mapping custom domains 
>>>> <https://cloud.google.com/appengine/docs/standard/python/mapping-custom-domains>
>>>>  and waiting for DNS propagation, you should be able to see these 
>>>> domain names within your address bar and it should not redirect you to the
>>>>  appspot.com domain. Please make sure you configure the cname as 
>>>> instructed in the document.
>>>>
>>>> On Monday, April 26, 2021 at 4:09:26 AM UTC-4 Glenn Richard wrote:
>>>>
>>>>> I believe that's what I did originally, but in case I am mistaken, I 
>>>>> have tried that again with one of the two purchased Google custom 
>>>>> domains. 
>>>>> After several steps, the process culminated with "DNS changes can take up 
>>>>> to 24 hours to take effect. Your SSL c

Re: [google-appengine] Re: Redirected custom domain from Google does not show in browser address bar

2021-04-27 Thread Glenn Richard
Thanks, NoCommandLine, and David for your help. The redirect works 
correctly now. Following your advice, with assistance from links you 
provided, I re-performed the mapping process from scratch.

For the benefit of others, I am providing the following summary of the 
steps that I believe were relevant:

   - At the top of the page, the pull-down menu was used to select the 
   project for which the designated custom domain was to be applied.
   - From the navigation menu in the upper left, I scrolled down to the *App 
   Engine* submenu in the *COMPUTE* section, and chose *Setting* from the 
   list that appeared.
   - I selected the *Custom domains* tab.
   - From there, I clicked on *Add a custom domain, *then selected the 
   appropriate custom domain previously purchased from Google from the 
   pull-down menu.
   - I mapped both the* naked domain* and the *www subdomain*. For the 
   naked domain, this created four *A* records and four ** records. For 
   the www subdomain, it created one *CNAME* record. These can be viewed at 
   any time via the *Add a custom domain* tab.
   - Offline, I *edited the app.yaml file* for the project to add the 
   following:

- url: /.*
  secure: always
  redirect_http_response_code: 301
  script: auto


   - Back online, I uploaded the revised *app.yaml* file and redeployed the 
   project.
   - To avoid the hazard of having the cached version of the appspot url 
   from appearing in the address bar, I removed that address from the history 
   in ny browser, which is Google Chrome.

After that, it works, thanks! If any of the above is inaccurate or requires 
clarification, please advise.




On Monday, April 26, 2021 at 6:38:55 PM UTC-4 NoCommandLine wrote:

> You need to map both the naked domain and the sub domain. See this 
> StackOverflow <https://stackoverflow.com/a/66268646/15211203> response 
> (you can ignore the SSL bit)
>
> On Monday, April 26, 2021 at 3:25:51 PM UTC-7 Glenn Richard wrote:
>
>> Hi David,
>>
>> So,delving a little more into the problem, if I type the www subdomain of 
>> the custom name into the address bar, the custom name does appear there 
>> after redirection occurs. This leads me to believe that the problem is that 
>> I need to create another CNAME record for the naked domain. Where should 
>> that be done?
>>
>> On Mon, Apr 26, 2021 at 2:33 PM 'David (Cloud Platform Support)' via 
>> Google App Engine  wrote:
>>
>>> Hello,
>>> After properly following mapping custom domains 
>>> <https://cloud.google.com/appengine/docs/standard/python/mapping-custom-domains>
>>>  
>>> and waiting for DNS propagation, you should be able to see these domain 
>>> names within your address bar and it should not redirect you to the 
>>> appspot.com domain. Please make sure you configure the cname as 
>>> instructed in the document.
>>>
>>> On Monday, April 26, 2021 at 4:09:26 AM UTC-4 Glenn Richard wrote:
>>>
>>>> I believe that's what I did originally, but in case I am mistaken, I 
>>>> have tried that again with one of the two purchased Google custom domains. 
>>>> After several steps, the process culminated with "DNS changes can take up 
>>>> to 24 hours to take effect. Your SSL certificate will take several minutes 
>>>> to activate." Accordingly, all of this should work within 24 hours, at 
>>>> which time I will check the redirection process and report the results 
>>>> here.
>>>>
>>>> Thanks.
>>>>
>>>> On Sunday, April 25, 2021 at 3:39:36 PM UTC-4 NoCommandLine wrote:
>>>>
>>>>> Hi,
>>>>>
>>>>> >>> and have redirected them to my App Engine project addresses <<<
>>>>>
>>>>> How did you do this? Did you use the 'Add a Custom Domain' under App 
>>>>> Engine > Settings? If you didn't, try that method 
>>>>>
>>>>> On Sunday, April 25, 2021 at 6:09:30 AM UTC-7 Glenn Richard wrote:
>>>>>
>>>>>> I purchased two custom domains from Google, and have redirected them 
>>>>>> to my App Engine project addresses. I performed the steps of setting up 
>>>>>> DNS 
>>>>>> for both. When I enter either of the custom domains into a browser 
>>>>>> address 
>>>>>> bar, the redirection does occur, and the page content is displayed in 
>>>>>> the 
>>>>>> browser window, however the custom domain names do not remain in the 
>>>>>> address bar. Instead, the App Engine addresses are displayed. How can I 
>>&g

Re: [google-appengine] Re: Redirected custom domain from Google does not show in browser address bar

2021-04-26 Thread Glenn Richard
Hi David,

So,delving a little more into the problem, if I type the www subdomain of
the custom name into the address bar, the custom name does appear there
after redirection occurs. This leads me to believe that the problem is that
I need to create another CNAME record for the naked domain. Where should
that be done?

On Mon, Apr 26, 2021 at 2:33 PM 'David (Cloud Platform Support)' via Google
App Engine  wrote:

> Hello,
> After properly following mapping custom domains
> <https://cloud.google.com/appengine/docs/standard/python/mapping-custom-domains>
> and waiting for DNS propagation, you should be able to see these domain
> names within your address bar and it should not redirect you to the
> appspot.com domain. Please make sure you configure the cname as
> instructed in the document.
>
> On Monday, April 26, 2021 at 4:09:26 AM UTC-4 Glenn Richard wrote:
>
>> I believe that's what I did originally, but in case I am mistaken, I have
>> tried that again with one of the two purchased Google custom domains. After
>> several steps, the process culminated with "DNS changes can take up to 24
>> hours to take effect. Your SSL certificate will take several minutes to
>> activate." Accordingly, all of this should work within 24 hours, at which
>> time I will check the redirection process and report the results here.
>>
>> Thanks.
>>
>> On Sunday, April 25, 2021 at 3:39:36 PM UTC-4 NoCommandLine wrote:
>>
>>> Hi,
>>>
>>> >>> and have redirected them to my App Engine project addresses <<<
>>>
>>> How did you do this? Did you use the 'Add a Custom Domain' under App
>>> Engine > Settings? If you didn't, try that method
>>>
>>> On Sunday, April 25, 2021 at 6:09:30 AM UTC-7 Glenn Richard wrote:
>>>
>>>> I purchased two custom domains from Google, and have redirected them to
>>>> my App Engine project addresses. I performed the steps of setting up DNS
>>>> for both. When I enter either of the custom domains into a browser address
>>>> bar, the redirection does occur, and the page content is displayed in the
>>>> browser window, however the custom domain names do not remain in the
>>>> address bar. Instead, the App Engine addresses are displayed. How can I
>>>> configure these so that the custom domain names remain in the address bar
>>>> instead? It seems that this should go smoothly, since I am using a Google
>>>> product to connect to another Google product, making any external
>>>> verification of ownership unnecessary.
>>>>
>>>> Thanks.
>>>>
>>> --
> 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/164d5064-672b-4b05-9084-7daad13da04dn%40googlegroups.com
> <https://groups.google.com/d/msgid/google-appengine/164d5064-672b-4b05-9084-7daad13da04dn%40googlegroups.com?utm_medium=email_source=footer>
> .
>

-- 
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/CAMeX_LmDZvEEOd%3DffOA75E-b1EC9CjyQvrOkP8m3A9jkLSTp2w%40mail.gmail.com.


[google-appengine] Re: Redirected custom domain from Google does not show in browser address bar

2021-04-26 Thread Glenn Richard
Thanks, David.

I seem to be a bit lost. Thus far, redirection to the appspot address does 
occur, but the custom domain names are not remaining in the address bar, so 
I'm trying to configure the cname as instructed in the document. I believe 
that the instructions to which you are referring are here: Updating DNS 
records at your domain registrar 
<https://cloud.google.com/appengine/docs/standard/python/mapping-custom-domains#dns_update>,
 
and that they are in item *3. Locate the host records section of your 
domain's configuration page and add each of the DNS records that you 
retrieved when you mapped your domain to your app*.

I'm looking at a page in my appspot project settings where information 
about my custom domain from Google is displayed.  One of the columns is 
labelled *Record type*. The only place where a CNAME is listed is on a row 
where the *www* is listed under the *Custom domain name* column. On that 
row, the entry in the *Record type* column is *CNAME*, and the entry under 
the *Data* column is *ghs.googlehosted.com*. All the other records on the 
page are either of ** type or of *A* type. Is this the *host records 
section of my domain's configuration page* to which instruction 3 refers? 
If so, should there be additional CNAME information on that page that is 
missing, or do I need to copy something from that page to a form on some 
other page in order to complete the configuration for the redirection, so 
that the custom name remains in the address bar?

Thanks for your help.

On Monday, April 26, 2021 at 2:33:07 PM UTC-4 David (Cloud Platform 
Support) wrote:

> Hello,
> After properly following mapping custom domains 
> <https://cloud.google.com/appengine/docs/standard/python/mapping-custom-domains>
>  
> and waiting for DNS propagation, you should be able to see these domain 
> names within your address bar and it should not redirect you to the 
> appspot.com domain. Please make sure you configure the cname as 
> instructed in the document.
>
> On Monday, April 26, 2021 at 4:09:26 AM UTC-4 Glenn Richard wrote:
>
>> I believe that's what I did originally, but in case I am mistaken, I have 
>> tried that again with one of the two purchased Google custom domains. After 
>> several steps, the process culminated with "DNS changes can take up to 24 
>> hours to take effect. Your SSL certificate will take several minutes to 
>> activate." Accordingly, all of this should work within 24 hours, at which 
>> time I will check the redirection process and report the results here.
>>
>> Thanks.
>>
>> On Sunday, April 25, 2021 at 3:39:36 PM UTC-4 NoCommandLine wrote:
>>
>>> Hi,
>>>
>>> >>> and have redirected them to my App Engine project addresses <<<
>>>
>>> How did you do this? Did you use the 'Add a Custom Domain' under App 
>>> Engine > Settings? If you didn't, try that method 
>>>
>>> On Sunday, April 25, 2021 at 6:09:30 AM UTC-7 Glenn Richard wrote:
>>>
>>>> I purchased two custom domains from Google, and have redirected them to 
>>>> my App Engine project addresses. I performed the steps of setting up DNS 
>>>> for both. When I enter either of the custom domains into a browser address 
>>>> bar, the redirection does occur, and the page content is displayed in the 
>>>> browser window, however the custom domain names do not remain in the 
>>>> address bar. Instead, the App Engine addresses are displayed. How can I 
>>>> configure these so that the custom domain names remain in the address bar 
>>>> instead? It seems that this should go smoothly, since I am using a Google 
>>>> product to connect to another Google product, making any external 
>>>> verification of ownership unnecessary.
>>>>
>>>> Thanks.
>>>>
>>>

-- 
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/dd968188-6b2b-4593-8988-9f1e05a06cdcn%40googlegroups.com.


[google-appengine] Re: Redirected custom domain from Google does not show in browser address bar

2021-04-26 Thread Glenn Richard
I believe that's what I did originally, but in case I am mistaken, I have 
tried that again with one of the two purchased Google custom domains. After 
several steps, the process culminated with "DNS changes can take up to 24 
hours to take effect. Your SSL certificate will take several minutes to 
activate." Accordingly, all of this should work within 24 hours, at which 
time I will check the redirection process and report the results here.

Thanks.

On Sunday, April 25, 2021 at 3:39:36 PM UTC-4 NoCommandLine wrote:

> Hi,
>
> >>> and have redirected them to my App Engine project addresses <<<
>
> How did you do this? Did you use the 'Add a Custom Domain' under App 
> Engine > Settings? If you didn't, try that method 
>
> On Sunday, April 25, 2021 at 6:09:30 AM UTC-7 Glenn Richard wrote:
>
>> I purchased two custom domains from Google, and have redirected them to 
>> my App Engine project addresses. I performed the steps of setting up DNS 
>> for both. When I enter either of the custom domains into a browser address 
>> bar, the redirection does occur, and the page content is displayed in the 
>> browser window, however the custom domain names do not remain in the 
>> address bar. Instead, the App Engine addresses are displayed. How can I 
>> configure these so that the custom domain names remain in the address bar 
>> instead? It seems that this should go smoothly, since I am using a Google 
>> product to connect to another Google product, making any external 
>> verification of ownership unnecessary.
>>
>> Thanks.
>>
>

-- 
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/a6a35cfe-9747-4da8-9290-e40efbba1416n%40googlegroups.com.


[google-appengine] Redirected custom domain from Google does not show in browser address bar

2021-04-25 Thread Glenn Richard
I purchased two custom domains from Google, and have redirected them to my 
App Engine project addresses. I performed the steps of setting up DNS for 
both. When I enter either of the custom domains into a browser address bar, 
the redirection does occur, and the page content is displayed in the 
browser window, however the custom domain names do not remain in the 
address bar. Instead, the App Engine addresses are displayed. How can I 
configure these so that the custom domain names remain in the address bar 
instead? It seems that this should go smoothly, since I am using a Google 
product to connect to another Google product, making any external 
verification of ownership unnecessary.

Thanks.

-- 
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/426f4474-d235-4ab3-9fd0-f492722bd874n%40googlegroups.com.


[google-appengine] Re: "www.custom-url.com is already mapped to a project" error when trying to point custom domain to App Engine app

2017-10-12 Thread Glenn Goodrich
@Kenworth,

I have the same issue and have opened an issue with issue tracker. Do you 
know any more about this problem? I have attached screenshots of my issue. 
I have not deleted the project. I would like to find a way to add the 'www' 
subdomain so I can get SSL for that as well. As it is now, I can only 
access my site using propertytax.io without the 'www'. I would appreciate 
any help you have to offer. 



On Sunday, October 1, 2017 at 6:59:14 PM UTC-5, Kenworth (Google Cloud 
Platform) wrote:
>
> @Chris
>
> I did not receive any messages / email privately. Since your project can 
> still be restored, please try to restore it and remove the associated 
> domains on the old project. 
>
> If you are still affected after the above suggestion, you should open a 
> new Issue  on the 
> Issue Tracker so our engineering team can look into it. Please refer to 
> this thread as a background to your case.
>

-- 
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/9aa2f25f-c110-457c-8dab-62709fc968ed%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Changes in Cloud SDK 0.9.76 for Go on Managed VM apps

2015-09-02 Thread 'Glenn Lewis' via Google App Engine
With the release of Cloud SDK 0.9.76, the default Dockerfile base image for
"runtime: go" has been updated.
It no longer performs "go get" to resolve any dependencies that were not
bundled into the Docker image.

To deploy a Go app, use the  aedeploy tool (
https://godoc.org/google.golang.org/appengine/cmd/aedeploy), which will
correctly assemble your app's dependencies in the same way that the go tool
does. Install it by running

  $ go get google.golang.org/appengine/cmd/aedeploy

and deploy your app by prefixing a `gcloud app deploy` command with aedeploy,
like

  $ aedeploy gcloud preview app deploy ./app.yaml --set-default --version
demo --docker-build=remote

It is good practice (though not required) to vendor your dependencies,
since that keeps your dependencies stable. If you do, still use aedeploy.

-- Glenn

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAOepbTLTBbXmPcqAO%3DAMq7nrPr%3Daa6P40GJ848c-eVX%2BrwQoNg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Go App Engine modified APIs

2015-07-15 Thread 'Glenn Lewis' via Google App Engine
bcc: google-appengine

One clarification after re-reading what I wrote...  the recent API error
change is to hopefully make the matching of errors easier...
It will not actually change the frequency at which you may get errors.
I have not heard of any issues with Memcache lately...
If you need higher availability of Memcache, you may wish to consider
getting a Dedicated Memcache
https://cloud.google.com/appengine/docs/go/memcache/#Go_Configuring_memcache
.
-- Glenn

On Wed, Jul 15, 2015 at 8:03 AM, Glenn Lewis gmle...@google.com wrote:

 For Go on App Engine questions, please use the Google group that is
 specifically for that topic:
 cc: https://groups.google.com/forum/#!forum/google-appengine-go

 We do not have an ETA for these features yet.

 Instead of runtime.RunInBackground, you can use internal.BackgroundContext
 https://github.com/golang/appengine/blob/master/internal/api.go#L252.
 There are other threads on the google-appengine-go mailing list about this
 if you want to see examples.

 As for the API error, there was a recent change
 https://github.com/golang/appengine/commit/bcfa7f27d2c3d83c7941564274e7797829a30f9e
 that hopefully solves this problem.  Please try updating with go get -u
 google.golang.org/appengine/... and see if that fixes the problem.

 -- Glenn


 On Tuesday, July 14, 2015 at 8:13:05 AM UTC-7, pedro mg wrote:

 Hi,

 any idea on when appengine/runtime will be ported ? Any timeframe ?
 appengine/aetest, appengine/cloudsql and appengine/runtime have not been
 ported yet.


 https://github.com/golang/appengine#3-update-code-using-deprecated-removed-or-modified-apis

 runtime.RunInBackground(...) used appengine.Context as param, but on our
 updated app we now use context.Context.

 Also, we are getting API error 9 (memcache:  Memcache is temporarily
 unavailable) quite frequently.

 Thanks in advance,
 --
 pedro mg



-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAOepbTJ%2B3p7jg-%2BVQXwNYTnKM8wkEpD_X2NOt3ss56MiRUzG0w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Go App Engine modified APIs

2015-07-15 Thread Glenn Lewis
For Go on App Engine questions, please use the Google group that is 
specifically for that topic:
cc: https://groups.google.com/forum/#!forum/google-appengine-go

We do not have an ETA for these features yet.

Instead of runtime.RunInBackground, you can use internal.BackgroundContext 
https://github.com/golang/appengine/blob/master/internal/api.go#L252. 
 There are other threads on the google-appengine-go mailing list about this 
if you want to see examples.

As for the API error, there was a recent change 
https://github.com/golang/appengine/commit/bcfa7f27d2c3d83c7941564274e7797829a30f9e
 
that hopefully solves this problem.  Please try updating with go get -u 
google.golang.org/appengine/... and see if that fixes the problem.

-- Glenn


On Tuesday, July 14, 2015 at 8:13:05 AM UTC-7, pedro mg wrote:

 Hi, 

 any idea on when appengine/runtime will be ported ? Any timeframe ? 
 appengine/aetest, appengine/cloudsql and appengine/runtime have not been 
 ported yet.


 https://github.com/golang/appengine#3-update-code-using-deprecated-removed-or-modified-apis

 runtime.RunInBackground(...) used appengine.Context as param, but on our 
 updated app we now use context.Context.

 Also, we are getting API error 9 (memcache:  Memcache is temporarily 
 unavailable) quite frequently. 

 Thanks in advance, 
 -- 
 pedro mg


-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/35f55106-d138-4e0c-af8f-e0dbd4350176%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Upcoming changes to App Engine support in the Google Cloud SDK

2015-07-08 Thread Glenn Lewis
For Go developers specifically, if you have a v1 (aka classic) Go App 
Engine app, you will download and use the stand-alone App Engine Go SDK 
https://cloud.google.com/appengine/downloads Andrew pointed to.
This additionally includes the use of the goapp tool for running and 
deploying.

If you have a v2 (aka Managed VM) Go app (vm: true), you will 
continue to use the Google Cloud SDK and the gcloud tool for running and 
deploying (examples 
https://cloud.google.com/appengine/docs/go/googlecloudstorageclient/getstarted
).

-- Glenn

On Wednesday, July 8, 2015 at 1:17:49 AM UTC-6, Andrew Jessup wrote:

 Hi folks,

 We're making an important change to the Google Cloud SDK to simplify how 
 App Engine developers can access and work with the SDK.

 As of the next release, 0.9.68, of the Google Cloud SDK - we will no 
 longer be distributing the stand alone App Engine SDKs. 

 The gcloud preview app deploy and gcloud preview app run commands that 
 most developers use within gcloud will continue to work, users should not 
 notice any obvious change.

 For users who were directly using appcfg.py, appcfg.sh, dev_appserver.py 
 or dev_appserver.sh scripts, or the GUI launchers that were bundled with 
 the Google Cloud SDK, you have two options:

 You can continue to use the latest versions of these tools used by 
 installing them from the stand-alone App Engine SDKs that can be found 
 here: https://cloud.google.com/appengine/downloads.

 In the short term, if you need to prevent this from happening, you can pin 
 a version of gcloud SDK with the following commands:

   gcloud config set --scope=installation 
 component_manager/fixed_sdk_version 0.9.67 
   gcloud components update

 As part of this change, the gae-java, gae-python, gae-php, and gae-go 
 components no longer exist in the component manager.  The `gcloud preview 
 app run` command will install language specific runtime libraries on 
 demand, as needed by your application.

 If you have questions or concerns, please let us know.

 Thanks,

 Andrew, on behalf of the Cloud SDK team
 Andrew Jessup | Product Manager, Google Cloud Platform | jes...@google.com 
 javascript: 
  

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/bf172de6-894d-4f6e-8c63-8b703288346f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Issues with Cloud SQL query parsing

2015-06-15 Thread Glenn Molnar
 

Hi,


We are suddenly seeing SQLExceptions when attempting to execute a Cloud SQL 
query, in a particular application environment as follows:


java.sql.SQLException: Wrong number of parameters: expected 0, was given 1 
Query: delete from ppq.channel where clientId = ? Parameters: 
[7a8261ef-a3ff-480b-8024-05f959ccd762]


The error message does not make a whole lot of sense, as clearly the query 
has a ? parameter. This stopped working all of a sudden without any new 
code being deployed, but only in a single app engine application. The exact 
same code is running OK in other environments.


The only difference we have been able to spot is that the environment we 
are getting the error on is running appengine 1.9.23, but the others are 
are still working are running 1.9.22. Has something changed that we need to 
be aware of?


Thanks

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/d9bd9884-9432-44a1-b8cd-c7878b5c9e92%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Google Apps No Longer Free

2013-06-17 Thread Pat Glenn
Hi Andrew,

I set up my domain on the appengine (at least I think I did it correctly). 
However, how do I know that once the free 30 day trial for the google apps 
for business expires, that my account on the appengine will automatically 
take over? Or do I need to do something to switch it over now? Please 
advise and thanks for your help..  (The domain I set up was Ben-Glenn.com)

On Friday, December 7, 2012 12:39:22 PM UTC-5, Andrew Jessup wrote:

 Hi Michele,

 To set up your domain in this way, navigate to your application's 
 dashboard within appengine.google.com and visit Application Settings  
 Add Domain. On that screen follow the Sign Up for Google Apps Standard 
 link. From here you can sign up to a limited version of Google Apps 
 Standard.

 Kind regards,

 Andrew Jessup | Product Manager, Google App Engine

 On Friday, 7 December 2012 01:53:11 UTC-8, Michele De Rose wrote:

 Hi Greg D'Alesandre,
 I can't find the way/link for to register a new domain with standard 
 google apps (free for 1 user)...

 can you help me?

 thanks a lot :)

 Michele.


 Il giorno venerdì 7 dicembre 2012 04:41:34 UTC+1, Greg D'Alesandre ha 
 scritto:

 Hello Everyone,

 The Apps Standard account you have today will continue to work for free. 
  If you create a new Apps account going through the App Engine Admin 
 Console you'll still be able to create a Standard Apps account for free but 
 you'll only be able to get 1 user per account rather than the 10 you get 
 today.

 Let me know if you have additional questions,

 Greg D'Alesandre
 Senior Product Manager, Google App Engine

 On Thu, Dec 6, 2012 at 7:00 PM, Nickolas Daskalou ni...@daskalou.comwrote:

 -1 Google.

 Nick



 On 7 December 2012 13:53, Strom xxs...@gmail.com wrote:

 This seems like another nice price increase for GAE.


 On Friday, December 7, 2012 4:42:42 AM UTC+2, Greg wrote:

 Just saw that Google Apps is no longer free for 
 businesseshttp://googleenterprise.blogspot.co.nz/2012/12/changes-to-google-apps-for-businesses.html
 . 

 I have no problem paying for a Google Apps account where I actually 
 use Google apps, but at the moment you have to have a Google Apps 
 account 
 to link a domain to an Appengine app. Some of our apps have two or three 
 domains showing the same app, and because you need to have an account 
 for 
 each email address that Appengine sends email from, we have three or 
 four 
 accounts per domain. So this is potentially going to add $600 per year 
 to 
 our costs - all for virtual accounts that don't actually use Google Apps 
 at 
 all.

 Can someone from Google comment please? Either Google Apps accounts 
 need to remain free if they are associated with Appengine apps, or there 
 needs to be another way to link domains (and authorise email addresses) 
 for 
 Appengine.


  -- 
 You received this message because you are subscribed to the Google 
 Groups Google App Engine group.
 To view this discussion on the web visit 
 https://groups.google.com/d/msg/google-appengine/-/7K0WvlZvU0oJ.

 To post to this group, send email to google-a...@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-appengi...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-appengine?hl=en.


  -- 
 You received this message because you are subscribed to the Google 
 Groups Google App Engine group.
 To post to this group, send email to google-a...@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-appengi...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-appengine?hl=en.




-- 
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 http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Re: Problems with deploying

2013-02-02 Thread Glenn Wiskur
+1

Unable to update:
java.lang.RuntimeException: Version not ready.
at 
com.google.appengine.tools.admin.AppVersionUpload.commit(AppVersionUpload.java:572)
at 
com.google.appengine.tools.admin.AppVersionUpload.doUpload(AppVersionUpload.java:143)
at 
com.google.appengine.tools.admin.AppAdminImpl.doUpdate(AppAdminImpl.java:371)
at 
com.google.appengine.tools.admin.AppAdminImpl.update(AppAdminImpl.java:53)
at 
com.google.appengine.eclipse.core.proxy.AppEngineBridgeImpl.deploy(AppEngineBridgeImpl.java:433)
at 
com.google.appengine.eclipse.core.deploy.DeployProjectJob.runInWorkspace(DeployProjectJob.java:148)
at 
org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:38)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53)

On Saturday, February 2, 2013 5:27:33 AM UTC-6, Jesús Espejo wrote:

 Hello,

 Is anyone experimenting issues uploading applications to GAE? I cannot do 
 it, it remains in the exponential back-off algorithm in 60 seconds 
 forever... Also i have problems launching backends:

 Error: Server ErrorThe service you requested is not available yet.

 Please try again in 30 seconds.

 My app is for Python.

 Thanks in advance, 

 Jesús.


-- 
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 http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Re: channel.js not returning the correct mime type

2011-07-04 Thread Glenn Simon
When will this issue be fixed?  Channel does not work with IE9.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/oLpEn_nDfG0J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[appengine-java] Re: Login redirect failing all of a sudden /_ah/conflogin

2011-03-04 Thread Glenn
What was the good workaround?  Our login is broken, too.

We have two App Engine apps: one is the front end and one the back
end,
with a REST API.  When the user accesses the front end a call to the
back end is made where

redirect = userService.createLoginURL(gae front end);

is called.  In this case both apps have appspot.com urls and
it worked well.  We are dead in the water now.

Please help!

Thanks,
Glenn

On Mar 2, 12:31 pm, Jon McAlister jon...@google.com wrote:
 Looks like you pushed a good workaround already, but yes that was a
 result of a new login system yesterday, and looks like it is not
 handling this case like the prior system did.

 Specifically, calling createLoginUrl where the continue url is not the
 same as the url the app is hosted on. And, furthermore, the continue
 url is not an app engine url at all.

 For now, what you did was a good workaround. That is, use an app
 engine url as the continue url, and then have the app engine app
 redirect to the non-app-engine url.

 Need to think on this case some more.



 On Wed, Mar 2, 2011 at 7:53 AM, Joerg Weingarten jbwinvest...@gmail.com 
 wrote:
  Since this morning my call to userservice.createLoginUrl produces a
  url that doesn't work anymore. When selecting my Sign in link, which
  has a url like:

 https://www.google.com/accounts/ServiceLogin?service=ahpassive=true;...

  I get the error:

  The requested URL /_ah/conflogin was not found on this server.

  Somebody please help.

  Thx
  ---Joerg---

  --
  You received this message because you are subscribed to the Google Groups 
  Google App Engine for Java group.
  To post to this group, send email to google-appengine-java@googlegroups.com.
  To unsubscribe from this group, send email to 
  google-appengine-java+unsubscr...@googlegroups.com.
  For more options, visit this group 
  athttp://groups.google.com/group/google-appengine-java?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Workaround to get a cursor from a sorted and filtered query?

2011-01-16 Thread Glenn
Thanks to speedplane for the suggestion.

To answer my own question, the algorithm I suggested did indeed work,
returning a cursor.

Cheers,
Glenn

On Dec 21 2010, 10:59 pm, Glenn glenn.mur...@gmail.com wrote:
 I'm trying to find a workaround for some query cursor limitations.
 Say that I have entities with date and an value which is a
 multiple of ten from 0 to 100.

 I need to get paginated entities sorted by date and with the
 integer field above a given threshold, along the lines of the
 pseudo code:

 SELECT * FROM entity WHERE integer = 50 ORDER BY date DESC

 What's the best way to do this?  My thoughts are below.

 As the docs say, I can't use an inequality on the integer field
 since then I'd have to sort by the integer first.  Instead of using
 integer values, I though Icould use strings: '0', '10', '20', etc.,
 and
 then use a query like this to get entities with a value of 70 or more:

 SELECT * FROM entity WHERE integer IN [70,80,90] ORDER BY date DESC

 But as the docs say, cursors can't be obtained from queries for
 entities that use contains() (i.e., IN) or even disjunctions
 (value == '70' || value == '80'...).

 My question is would a multiple value property (a list) work for
 this?  My idea is to set the all the values up to the true entity
 value, e.g., if the entity value was '40', then the MVP would be
 ['0', '10', '20', '30', '40'].  Then if the threshold was 20,
 then entities such as this would (I believe) be returned by a query
 like

 SELECT * FROM entity WHERE value == '20' ORDER BY date DESC

 Can you obtain a cursor from such a query or is there a better way?

 Thanks,
 Glenn

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Workaround to get a cursor from a sorted and filtered query?

2010-12-22 Thread Glenn
I'm trying to find a workaround for some query cursor limitations.
Say that I have entities with date and an value which is a
multiple of ten from 0 to 100.

I need to get paginated entities sorted by date and with the
integer field above a given threshold, along the lines of the
pseudo code:

SELECT * FROM entity WHERE integer = 50 ORDER BY date DESC

What's the best way to do this?  My thoughts are below.

As the docs say, I can't use an inequality on the integer field
since then I'd have to sort by the integer first.  Instead of using
integer values, I though Icould use strings: '0', '10', '20', etc.,
and
then use a query like this to get entities with a value of 70 or more:

SELECT * FROM entity WHERE integer IN [70,80,90] ORDER BY date DESC

But as the docs say, cursors can't be obtained from queries for
entities that use contains() (i.e., IN) or even disjunctions
(value == '70' || value == '80'...).

My question is would a multiple value property (a list) work for
this?  My idea is to set the all the values up to the true entity
value, e.g., if the entity value was '40', then the MVP would be
['0', '10', '20', '30', '40'].  Then if the threshold was 20,
then entities such as this would (I believe) be returned by a query
like

SELECT * FROM entity WHERE value == '20' ORDER BY date DESC

Can you obtain a cursor from such a query or is there a better way?

Thanks,
Glenn

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[google-appengine] Re: Availability of GAE app for Google Apps users

2010-12-14 Thread Glenn Blackler
Thanks for the additional help! The Federated Login feature won't help
me much at this point. The data we manage is relatively sensitive and
we have to use SSL and it looks like they don't support it yet. But,
again, I appreciate your ideas!

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Availability of GAE app for Google Apps users

2010-12-10 Thread Glenn Blackler
I'll definitely let you know if I have any success. Thanks for taking
the time to reply.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Availability of GAE app for Google Apps users

2010-12-09 Thread Glenn Blackler
Hi -
I'm sure this question is answered somewhere, but I haven't been able
to dig through all the information to find anything definitive.

Here's the situation and the problem:

We have built a GAE application that is up and running. It's
registered on the Marketplace, but is not 'installable'. (Not sure if
that is important or not).

When new customers come to the site, they are asked to provide their
Google account credentials, or to create a new Google account. This is
a personal Google account vs. an Apps acct.

If a new customer approaches our site and attempts to use an existing
Google Apps e-mail address to register, it won't let them (says the e-
mail/password is incorrect). Their only alternative would be to use a
different e-mail address and create a new personal Google account
around that address. (Most companies won't want to do this, which is
my problem). My understanding is that if you try to create an personal
acct on top of an Apps address, it causes various permissions issues.

(I understand the difference between an Apps account and a peronal
account, and that they are being merged, to a certain extent).

I also own a domain that uses Google Apps, so I went to the control
panel for that domain and added my GAE app as a service with the hope
that that change would allow users in this domain to use their
company addresses to use the GAE app. This process seemed to work
fine, but when my users go to their Apps home page they don't see the
GAE app as an option. If they go directly to the URL, they have the
same old authentication problem.

So the question is, is it possible for existing Google Apps users to
access my GAE app with their Apps e-mail addresses ... and if so, what
do I need to do to make that happen?

Sorry for my long-windedness. I appreciate any help :)
Glenn

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: static files not found after upload

2010-03-23 Thread Glenn Blackler
Thanks - I should have thought of that. Really appreciate it.

On Mar 23, 2:56 am, Nick Johnson (Google) nick.john...@google.com
wrote:
 Hi Glenn,

 Are you developing in Windows? If so, check the capitalization of your
 filenames: Windows is case-insensitive, but all other platforms, including
 production App Engine, are case sensitive.

 -Nick Johnson

 On Tue, Mar 23, 2010 at 1:05 AM, Glenn Blackler 
 glenn_black...@yahoo.comwrote:

  Hello --

  My very simple app works fine on the dev server, but once uploaded it
  can't access a file in one of my static directories. I have a static
  directory HTML with two files in it. The first comes up fine (I
  redirect to it from .py script) but the other HTML file always brings
  an error when I try to link to it. The error in my log is -- Static
  file referenced by handler not found: html/new_task.html.

  I searched for others having this same problem, but the only ones I
  could find had to do with manage.py and django, which I don't think is
  the problem here.

  Again, everything works fine on the dev server which is why this is so
  frustrating. I appreciate any help.

  Here's my app.yaml if it helps :

  application: test_app
  version: 1
  runtime: python
  api_version: 1

  handlers:
  - url: /stylesheets
   static_dir: stylesheets

  - url: /html
   static_dir: html

  - url: /js
   static_dir: js

  - url: /tasks
   script: test2.py

  - url: /addnew
   script: test2.py

  - url: /.*
   script: home.py

  --
  You received this message because you are subscribed to the Google Groups
  Google App Engine group.
  To post to this group, send email to google-appeng...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscrib...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.

 --
 Nick Johnson, Developer Programs Engineer, App Engine
 Google Ireland Ltd. :: Registered in Dublin, Ireland, Registration Number:
 368047

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] static files not found after upload

2010-03-22 Thread Glenn Blackler
Hello --

My very simple app works fine on the dev server, but once uploaded it
can't access a file in one of my static directories. I have a static
directory HTML with two files in it. The first comes up fine (I
redirect to it from .py script) but the other HTML file always brings
an error when I try to link to it. The error in my log is -- Static
file referenced by handler not found: html/new_task.html.

I searched for others having this same problem, but the only ones I
could find had to do with manage.py and django, which I don't think is
the problem here.

Again, everything works fine on the dev server which is why this is so
frustrating. I appreciate any help.

Here's my app.yaml if it helps :

application: test_app
version: 1
runtime: python
api_version: 1

handlers:
- url: /stylesheets
  static_dir: stylesheets

- url: /html
  static_dir: html

- url: /js
  static_dir: js

- url: /tasks
  script: test2.py

- url: /addnew
  script: test2.py

- url: /.*
  script: home.py

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Snow Leopard

2009-11-04 Thread Glenn

I'm running Snow Leopard and therefore by default Python 2.6.

I know that I need Python 2.5.

I'm running the first Hello, World example, and trying the following
at the Unix prompt in Terminal:

%python2.5 /usr/local/bin/dev_appserver.py helloworld/

and this is what I get:

Traceback (most recent call last):
 File /usr/local/bin/dev_appserver.py, line 60, in module
   run_file(__file__, globals())
 File /usr/local/bin/dev_appserver.py, line 57, in run_file
   execfile(script_path, globals_)
 File /Applications/GoogleAppEngineLauncher.app/Contents/Resources/
GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/
google/appengine/tools/dev_appserver_main.py, line 65, in module
   from google.appengine.tools import os_compat
ImportError: cannot import name os_compat

What am I missing?

Thanks.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Snow Leopard

2009-11-04 Thread Glenn

Ryan,

Thank you very much for the tip.

I did as you suggested, and as evidence of it making the switch, when
I invoke python, I see that it's now 2.5.4:

% defaults write com.apple.versioner.python Version 2.5

% defaults read com.apple.versioner.python
{
Version = 2.5;
}

% python
Python 2.5.4 (r254:67916, Jul  7 2009, 23:51:24)
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin
Type help, copyright, credits or license for more information.
 quit()

However, when I run the AppEngine I still get the same result:

% python /usr/local/bin/dev_appserver.py helloworld/
Traceback (most recent call last):
  File /usr/local/bin/dev_appserver.py, line 60, in module
run_file(__file__, globals())
  File /usr/local/bin/dev_appserver.py, line 57, in run_file
execfile(script_path, globals_)
  File /Applications/GoogleAppEngineLauncher.app/Contents/Resources/
GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/
google/appengine/tools/dev_appserver_main.py, line 65, in module
from google.appengine.tools import os_compat

The same happens if I use the AppEngine Launcher.

On Nov 4, 12:51 pm, ryan baldwin ryanbald...@gmail.com wrote:
 You have to switch to 2.5. Easy to do.

 Open a terminal and throw this command to the wind:

 defaults write com.apple.versioner.python Version 2.5

 Enjoy!

 - ryan.



 On Wed, Nov 4, 2009 at 8:37 AM, Glenn glenn.down...@gmail.com wrote:

  I'm running Snow Leopard and therefore by default Python 2.6.

  I know that I need Python 2.5.

  I'm running the first Hello, World example, and trying the following
  at the Unix prompt in Terminal:

  %python2.5 /usr/local/bin/dev_appserver.py helloworld/

  and this is what I get:

  Traceback (most recent call last):
   File /usr/local/bin/dev_appserver.py, line 60, in module
    run_file(__file__, globals())
   File /usr/local/bin/dev_appserver.py, line 57, in run_file
    execfile(script_path, globals_)
   File /Applications/GoogleAppEngineLauncher.app/Contents/Resources/
  GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/
  google/appengine/tools/dev_appserver_main.py, line 65, in module
    from google.appengine.tools import os_compat
  ImportError: cannot import name os_compat

  What am I missing?

  Thanks.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Unable to create a new application

2009-06-16 Thread glenn

My account says I have 10 applications remaining. But when I try to
create a new application, entering my mobile phone number, country and
carrier, I get the following error:

The phone number has been sent too many messages or has already been
used to confirm an account.

Anyone know what's going on and how to get past this?


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: SMS Verification Help Form Broken

2009-04-21 Thread Glenn Rempe

Thank you Jeff.  Both your reply, and you fixing my account are much
appreciated.

Suggestion : A bit of text on the comment form indicating its
limitation would be really helpful I suspect to those trying to use it
today...

Thanks.

Glenn


On Apr 21, 9:21 am, Jeff S (Google) j...@google.com wrote:
 Hi Glenn,

 My first guess as to the issue with the comments is that the form currently
 allows only a single line comment (no newline characters). This is a known
 issue which should be fixed in future versions. Your account should now be
 usable, apologies for the inconvenience.

 Happy coding :-)

 Jeff



 On Mon, Apr 20, 2009 at 5:43 PM, Glenn Rempe gl...@rempe.us wrote:

  The following page, referenced in the FAQ (http://code.google.com/
  appengine/kb/sms.html http://code.google.com/%0Aappengine/kb/sms.html)
  as the way to request assistance with SMS
  issues is non-functional. (I guess thats one way to reduce the support
  burden).

 http://appengine.google.com/waitlist/sms_issues

  Unfortunately, despite several attempts, I am unable to make this
  comment form work at all.

  This time all I get is a warning message stating:

  There were errors:
  Comments

  The link on the word 'Comments' goes nowhere.  (http://
  appengine.google.com/waitlist/sms_issues.do#comments)

  Previously I have received similarly cryptic messages regarding the
  carrier or country (when I had entered US and ATT and several
  permutations of each).

  Can you please fix this so that at least I can feel like I am making
  SOME progress in resolving my SMS issue?  You can contact me directly
  at glenn at rempe.us if possible as well and I can provide you with
  the issue I am trying to resolve.

  Thanks.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] SMS Verification Help Form Broken

2009-04-20 Thread Glenn Rempe

The following page, referenced in the FAQ (http://code.google.com/
appengine/kb/sms.html) as the way to request assistance with SMS
issues is non-functional. (I guess thats one way to reduce the support
burden).

http://appengine.google.com/waitlist/sms_issues

Unfortunately, despite several attempts, I am unable to make this
comment form work at all.

This time all I get is a warning message stating:

There were errors:
Comments

The link on the word 'Comments' goes nowhere.  (http://
appengine.google.com/waitlist/sms_issues.do#comments)

Previously I have received similarly cryptic messages regarding the
carrier or country (when I had entered US and ATT and several
permutations of each).

Can you please fix this so that at least I can feel like I am making
SOME progress in resolving my SMS issue?  You can contact me directly
at glenn at rempe.us if possible as well and I can provide you with
the issue I am trying to resolve.

Thanks.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---