[google-appengine] Re: Maximum number of versions

2010-06-23 Thread iceanfire
You didn't properly read his question. He said he had less than 10 versions so the limitation shouldn't apply here. Anyways, I had the same problem, I currently have 7 versions (after deleting two) and I still get that error. On May 27, 3:26 pm, Aurelian aurelian.vacar...@googlemail.com

[google-appengine] weird sorting error with inequality filters

2009-08-21 Thread iceanfire
I'm getting the following error: BadArgumentError: First ordering property must be the same as inequality filter property, if specified for this query; received distance, expected cost when i run the following code: search_query.filter(cost , min_price) search_query.filter(cost , max_price)

[google-appengine] Re: weird sorting error with inequality filters

2009-08-21 Thread iceanfire
) search_query.order(cost) search_query.order(distance) On Aug 21, 10:58 am, iceanfire iceanf...@gmail.com wrote: I'm getting the following error: BadArgumentError: First ordering property must be the same as inequality filter property, if specified for this query; received distance

[google-appengine] Re: UnicodeEncodeError when using bulkupload to download from datastore

2009-08-02 Thread iceanfire
the name is: description On Aug 1, 8:58 pm, Holger w...@arcor.de wrote: What's the name of your 'TextProperty' field? I tracked this error down to a 'TextProperty' Field in the datastore. If this name should contain strange letters (ÄÜÖ etc) try changing the name. --- Re Datastore

[google-appengine] UnicodeEncodeError when using bulkupload to download from datastore

2009-08-01 Thread iceanfire
I'm getting the following error when I download from the datastore: UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' in position 265: ordinal not in range(128) I tracked this error down to a 'TextProperty' Field in the datastore. Any idea how I should deal with this? Also, I

[google-appengine] testing application error handling

2009-04-18 Thread iceanfire
According to the google maps team, we have to expect atleast some [small] amounts of datastore errors. Is there anyway to get the SDK to throw these errors, so I can better test how my application responds when a specific query is denied (i.e make sure the right code kicks in and handles the

[google-appengine] 500 error for static files today April 12 5:23am

2009-04-12 Thread iceanfire
Hi there, I've been encountering this problem @ around 5:23am Central Time. Two of my static files for my page (a .css and a .js) seem to consistently give a 500 error. The .css file sometimes loads (30% of the time) as I refresh. I wasn't sure where else to report this. I know its kinda early

[google-appengine] Re: Can I query to find out the children entities of a Parent entity?

2009-03-19 Thread iceanfire
. On Mar 18, 8:21 pm, iceanfire iceanf...@gmail.com wrote: anyone? On Mar 16, 1:09 pm, iceanfire iceanf...@gmail.com wrote: Also, now when I ran the following code in the console: from google.appengine.ext import db

[google-appengine] Re: Store information when people log into appengine..?

2009-03-19 Thread iceanfire
hey richard, I haven't tried this out, but here's an idea: For your login link use: = real_destination = link_to_current_page statistics_dest = link_to_statistics_page+? real_destination=+real_destination create_login_url(statistics_dest) Then run your script to get ip and

[google-appengine] Re: Can I query to find out the children entities of a Parent entity?

2009-03-18 Thread iceanfire
anyone? On Mar 16, 1:09 pm, iceanfire iceanf...@gmail.com wrote: Also, now when I ran the following code in the console: from google.appengine.ext import db key_of_specific_Thumb_entity = agdhcHRydXNochALEgpJbWFnZVRodW1iGEUM ==key grabbed from

[google-appengine] Re: Is there a way to get the Clients screen size with Appengine?

2009-03-17 Thread iceanfire
var myWidth = 0, myHeight = 0; if( typeof( window.innerWidth ) == 'number' ) { //Non-IE myWidth = window.innerWidth; myHeight = window.innerHeight; } else if( document.documentElement ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) { //IE

[google-appengine] Can I query to find out the children entities of a Parent entity?

2009-03-16 Thread iceanfire
Hi, I'm having a bit of trouble understanding how to use parents/children properties within transactions. I have divided up my Thumbnails and the actual Large Image into two separate models to save processing power, but when I upload, I want to make sure that both entities are

[google-appengine] Re: Can I query to find out the children entities of a Parent entity?

2009-03-16 Thread iceanfire
\'' % kind) KindError: No implementation for kind 'ImageThumb' I'm guessing it has something to do with it being a parent or something!? On Mar 16, 1:03 pm, iceanfire iceanf...@gmail.com wrote: Hi, I'm having a bit of trouble understanding how to use parents/children properties within transactions

[google-appengine] Re: New Limits for Several App Engine Operations

2009-02-13 Thread iceanfire
WOW! Thanks! On Feb 13, 4:13 pm, Marce (Google) ma...@google.com wrote: For those of you who haven't already heard, we're very excited yesterday to have announced that we've raised limits on several App Engine operations:     * No more High CPU Requests! App Engine Apps were once allowed

[google-appengine] Re: What is Data Storage Limit in GAE DataStore

2009-01-16 Thread iceanfire
According to the roadmap: http://code.google.com/appengine/docs/roadmap.html Google is coming out with : Service for storing and serving large files that might be useful to you depending on the size of the pictures you're uploading. Also, they will at some point start the billing system, which

[google-appengine] Re: Can we do it in GAE

2009-01-16 Thread iceanfire
http://groups.google.com/group/google-appengine/browse_thread/thread/b5f599a1e43c0a26/d4434084f0344550?lnk=gstq=geocoding#d4434084f0344550 On Jan 14, 1:44 am, Jonk joni.kah...@gmail.com wrote: On 14 tammi, 09:32, arnie parvez...@rediffmail.com wrote: Is it possible to convert a physical

[google-appengine] Re: Still having trouble with high-cpu warnings for thumbnails.

2008-10-08 Thread iceanfire
looking at imports and make sure that you only call the essential ones. On Oct 1, 2:24 am, iceanfire [EMAIL PROTECTED] wrote: I will try removing the debug stuff, maybe that is what's causing this problem. I'll let you know if this helps. Thanks. On Sep 29, 6:44 am, Sylvain [EMAIL PROTECTED

[google-appengine] Re: Still having trouble with high-cpu warnings for thumbnails.

2008-10-01 Thread iceanfire
). You should I would of thought be looking to cache everything possible. Any suggestions are welcome. On Sep 29, 2:10 am, iceanfire [EMAIL PROTECTED] wrote: Thanks for the suggestions. I see the need for Cacheing to reduce the load, but I don't understand why the current request

[google-appengine] Re: Still having trouble with high-cpu warnings for thumbnails.

2008-09-28 Thread iceanfire
Thanks for the suggestions. I see the need for Cacheing to reduce the load, but I don't understand why the current request is causing high- cpu warnings (2 times the average cpu request). At this rate, if a few first time users use my application try to open images that haven't been memcached

[google-appengine] Re: Log errors that don't make sense to me

2008-09-28 Thread iceanfire
I can't really help you with this issue. but I just wanted to say: Your app is amazing. On Sep 27, 8:56 pm, Daniel [EMAIL PROTECTED] wrote: I've recently connected my appengine powered game to facebook.  I have appengine serving up the facebook pages and I'm getting some errors in the logs

[google-appengine] Re: Django forms, what to do when all the data isn't present

2008-09-25 Thread iceanfire
No problem. Take a look at this as well: http://code.google.com/appengine/articles/djangoforms.html On Sep 25, 2:08 am, Peter [EMAIL PROTECTED] wrote: That looks solid.  I'll give it a go Thanks for helping a newbie! Pete On Sep 25, 6:04 am, iceanfire [EMAIL PROTECTED] wrote: I'm

[google-appengine] non-unique ids in same model?

2008-08-31 Thread iceanfire
Hey, I've got Model_C which is the child of Model_P. In this case, there are about 200 Model_P entities with each one having one child. When I took a look at data viewer, I noticed that all Model_C entities had an id of 1. Is this something that only occurs for parent/child relationships? Or