[google-appengine] Re: Again *major* server errors of app engine!

2009-02-08 Thread conman
Davel63, are you also using appengine patch? On 8 Feb., 04:48, Devel63 danstic...@gmail.com wrote: We see the same thing, and just converted to Django.  Sounds like it may be related to Django. On Feb 7, 11:09 am, johnP j...@thinkwave.com wrote: No solution - just gathering information.  

[google-appengine] Re: prepopulate form fields according to http get parameters

2009-02-08 Thread Alexander Kojevnikov
On Feb 8, 6:56 pm, niklasr nikla...@gmail.com wrote: I'm looking for template tags or similar that according to http get request parameters set the corresponding html form fields. To achieve the selection of an html option and populate a textfield according to the http request parameters

[google-appengine] Re: does GAE have pycrypto?

2009-02-08 Thread jonasgalvez
But surely it should available to GAE users since it used by GAE itself, shouldn't it? --Jonas Galvez On Sat, Feb 7, 2009 at 11:04 PM, Alexander Kojevnikov alexan...@kojevnikov.com wrote: On Feb 8, 8:23 am, Anthony acca...@gmail.com wrote: Thanks, that's what I've been doing locally. So I

[google-appengine] Re: prepopulate form fields according to http get parameters

2009-02-08 Thread niklasr
On Feb 8, 10:11 am, Alexander Kojevnikov alexan...@kojevnikov.com wrote: On Feb 8, 6:56 pm, niklasr nikla...@gmail.com wrote: I'm looking for template tags or similar that according to http get request parameters set the corresponding html form fields. To achieve the selection of an

[google-appengine] Re: Inconsistency between dev_server and production server on sharded counter behaviour.

2009-02-08 Thread djidjadji
If you have different behavior on dev_appserver and the production server you should file a bug report in the issue list http://code.google.com/p/googleappengine/issues/list At least dev_appserver should report the transaction problem the same as production. dev_appserver has code to check for

[google-appengine] Re: urlfetch problem

2009-02-08 Thread djidjadji
Did you use urllib.urlencode() to construct the parameter part url = 'http://server/index.php' url_fields = { 'auth': authstring } url_fields = urllib.urlencode(url_fields) result = urlfetch.fetch(url+'?'+url_fields) --~--~-~--~~~---~--~~ You received this

[google-appengine] Re: Django 500's and Error Reporting

2009-02-08 Thread Tony Andrews
I ran into this when I ported from webapp to Django (1.0). I looked into the problem and found that adding DEBUG_PROPAGATE_EXCEPTIONS = True to settings.py solved the problem. Tony On Feb 7, 7:46 pm, Devel63 danstic...@gmail.com wrote: We wanted the i18n features (gettext, trans). On Feb 7,

[google-appengine] QueryIterator Error

2009-02-08 Thread Davide Ferrero
From 2 two days my applications fall in error in every pages. I don't have modified nothing from 1 week and three days ago my application works correctly.. this is the error log: # 02-08 07:24AM 44.966 / 500 194ms 139ms-cpu 0kb See details 79.50.168.248 - -

[google-appengine] Re: Again *major* server errors of app engine!

2009-02-08 Thread Mike Wesner
I think our app was running into this issue also. We are using our own django and parts of the appengine helper patch. I would see 500 errors, deadlineexceeded but the exception is thrown in the django, helper or pyamf (in our case we use pyamf to process the requests from a flex/flash client)

[google-appengine] Re: Generating cryptographically strong random numbers

2009-02-08 Thread Alexander Konovalenko
I filed a request for a well-documented cryptographically strong random number generator, or at least a quality entropy source: http://code.google.com/p/googleappengine/issues/detail?id=1055 --~--~-~--~~~---~--~~ You received this message because you are

[google-appengine] Re: Django 500's and Error Reporting

2009-02-08 Thread Devel63
It didn't work for me, but gave me a clue. As part of experiment, I deleted the DEBUG=True line from settings.py, and the stack trace did start appearing in the Console window. True, it was complaining about not having an error template, but it also showed me the actual cause of the originating

[google-appengine] Re: App engine problems

2009-02-08 Thread Devel63
Again this morning. Here is an interesting log report, showing the Django loading issue (note that it times out without really taking much cpu resources) 1. 02-08 12:03PM 01.519 /hint/request 500 9025ms 672ms-cpu 1kb Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.6) Gecko/

[google-appengine] Re: Again *major* server errors of app engine!

2009-02-08 Thread conman
And why occurres the error only at some time of the day? On 8 Feb., 18:21, Mike Wesner m...@konsole.net wrote: I think our app was running into this issue also. We are using our own django and parts of the appengine helper patch. I would see 500 errors, deadlineexceeded but the exception is

[google-appengine] Re: Again *major* server errors of app engine!

2009-02-08 Thread Nick Winter
I'm seeing this, too: large number of DeadlineExceededErrors and other errors at the same times of the day, for the past several days. I'm not sure it's related to Django or anything else. We are using Django and pyamf, and the errors will happen anywhere. I think it's just the Django and pyamf

[google-appengine] Re: Again *major* server errors of app engine!

2009-02-08 Thread Devel63
We are using Django v0.96, which is included with GAE (so, not the Patch, but not webapp either). Nick Winter's comment could be right ... maybe it's not Django, but Django just has a lot of initialization code. That being said, here's an interesting and common log message that seems to show