Re: [google-appengine] Re: error 204 in Google App Engine that I can't get rid of

2015-07-13 Thread dd
for the % of failure, as this will help make sure if this is expected or not. Cheers On Monday, July 13, 2015 at 7:29:55 AM UTC-4, Satyanarayana Govindachandra wrote: i just want to see , do you use Page Speed Service from Application Settings. On Mon, Jul 13, 2015 at 8:33 AM, dd nou

Re: [google-appengine] Re: error 204 in Google App Engine that I can't get rid of

2015-07-13 Thread dd
It seems that the 204 error is fixed upon analyzing/fixing the changes made at the time the 204 error was occurring. The cause was the kind of code as below executed in the application's entry point. function setEnv($key, $val){putenv($key=$val);$_ENV[$key] = $val; $_SERVER[$key] =

Re: [google-appengine] Re: error 204 in Google App Engine that I can't get rid of

2015-07-13 Thread dd
Application Settings. On Mon, Jul 13, 2015 at 8:33 AM, dd nou...@gmail.com javascript: wrote: Same Issue here. -- 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

[google-appengine] Re: error 204 in Google App Engine that I can't get rid of

2015-07-12 Thread dd
Same Issue here. -- 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

Re: [google-appengine] Some questions about get_serving_url.

2013-07-12 Thread dd
dear Alex Thanks for your information! 2013年7月11日木曜日 1時48分35秒 UTC+9 Alex Burgel: On Wednesday, July 10, 2013 6:17:54 AM UTC-4, barryhunter wrote: The image should get a future expires date, so the browser will cache the image. FYI, the expiration time is 24 hours, and there doesn't

Re: [google-appengine] Some questions about get_serving_url.

2013-07-11 Thread dd
dear Barry Hunter, thank you so much for your prompt answer! The 5th info was especially valuable for me. Much gratitude, dd 2013年7月10日水曜日 19時17分54秒 UTC+9 barryhunter: On Wed, Jul 10, 2013 at 11:00 AM, dd nou...@gmail.com javascript:wrote: - Does it cost anything at all to create

[google-appengine] Some questions about get_serving_url.

2013-07-10 Thread dd
- Does it cost anything at all to create a *get_serving_url* image? - Is the cost to store an image created through *get_serving_url* to the Image API storage just the same as Blobstore ($0.13/GB/month)? - Is the cost to serve an image created through *get_serving_url* the

[google-appengine] Re: what is wrong with Category.all().filter(c_name=,'ddd'),return nothing?

2009-01-20 Thread dd
djidjadji 写道: Category.all().filter(c_name =,ddd) Watch the space character after c_name yes ,you are right. In the first instance i ignore the space character , And think it is not important. Is there anyother one like me ? This is my fault.and luckily i find it. thank djidjadji!

[google-appengine] Re: why does Foo.all.filter get nothing?

2009-01-20 Thread dd
Qian Qiao 写道: Hmm, the query LGTM, I can't think of anything wrong with it. Try run the same query in the the development console and see if that give you anything? -- Joe what means LGTM?what is your suggestion about this query? i know django can test in dos commandline, how can gae run

[google-appengine] Re: why does Foo.all.filter get nothing?

2009-01-20 Thread dd
Qian Qiao 写道: LGTM = looks good to me. You can fire up the dev server, then point your browser to http://localhost:8080/_ah/admin to see the development console, you can then your query there to see the results and, if any, error messages. oh,actually i do not know this skill,it it

[google-appengine] what is wrong with Category.all().filter(c_name=,'ddd'),return nothing?

2009-01-19 Thread dd
hi, i hava a model : class Category(db.Model): c_name = db.StringProperty(multiline=True) i use Category.all().filter(c_name=,ddd) (i am sure there is a record ) but i can get nothing ! so what is wrong ? thx! --~--~-~--~~~---~--~~ You received this

[google-appengine] Re: why does Foo.all.filter get nothing?

2009-01-19 Thread dd
Qian Qiao 写道: Have you tried the using the same filter like this? db.Query(Foo) query.filter(your_filter) HTH. -- Joe yh. i have a record like : c = Cat(name='c',year=2009,month=1) , i want to query and get this record,so i use: Cat.all().filter('name =','c').filter('year