[google-appengine] Re: Blobstore correctly stores uploads, but returns status 500

2010-03-08 Thread Neves
Me too, and I cant upload files bigger than 3 MB On Feb 22, 12:27 am, Alexander M wrote: > I am able to upload files to the datastore, but the app engine returns > a HTTP Response status of 500 (error) as a return value. The files > that I am uploading are images, which I then (successfully) comp

[google-appengine] Re: Blobstore return status 500 (after *successful* upload)

2010-03-08 Thread Neves
I am getting the same problem. And I cant upload files bigger than 3 MB. On Feb 22, 10:22 am, Alexander M wrote: > My application uses Django, App Engine Python, and App Engine Helper. > > I have written an application that successfully uploads images to > theblobstore, and successfully compress

[google-appengine] Re: 4Mb in datastore statistic = 2,4Gb in Stored Data Resource

2009-10-22 Thread Neves
Totally agree! On Oct 22, 12:12 pm, WeatherPhilip wrote: > Given that this question comes up again and again, I think it would be > highly desirable for Google to improve the datastore statistics page > to > > (a) show the total size consumed by the indexes > (b) show the size consumed by each i

[google-appengine] Re: Receiving Email within custom domain

2009-10-13 Thread Neves
Not so easy. :( How can I redirect *...@mydomain.com to *...@appid.appspotmail.com in order that a mail sent randomly to test...@mydomain.com be redirect to test...@appid.appspotmail.com automatically. On 14 out, 00:17, Rodrigo Moraes wrote: > On Tue, Oct 13, 2009 at 11:00 PM, Neves wr

[google-appengine] Receiving Email within custom domain

2009-10-13 Thread Neves
Is it possible (or will it be possible) to receive email within my domain? (not appspotmail.com) --~--~-~--~~~---~--~~ 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

[google-appengine] Re: how to drop a table in gae database

2009-09-18 Thread Neves
The problem is that "Just delete all the entities of that kind" is very slow. I cant batch delete more then 300 records with a single db.delete ([...]). On 18 set, 03:00, Takashi Matsuo wrote: > Just delete all the entities of that kind. Datastore is schemaless, so > there is no declaration for

[google-appengine] PreCalculate datastore size

2009-09-17 Thread Neves
How can I calculate how much data my model will use? for example, a long field is 8 bytes long? A key field hash is always a 40 bytes length? What about indexes? Supose I have a model like this, with no special index: class Space(db.Model): x = db.IntegerProperty() y = db.IntegerProperty()

[google-appengine] wildcard for custom domains

2009-08-28 Thread Neves
Now that appengine supports wildcards on myapp.appspot.com: http://googleappengine.blogspot.com/2009/08/new-features-in-124.html Will it be possible to support wildcards within my own domain? --~--~-~--~~~---~--~~ You received this message because you are subscrib

[google-appengine] Re: Just released: Python SDK 1.2.3

2009-06-19 Thread Neves
does TaskQueue is the Google solution for long running tasks, or it will be another new API? What about Big File Storage? I heard nothing about it on GIO. Great work guys! On Jun 19, 9:08 am, Sylvain wrote: > Django 1.02 > > Check > thishttp://code.google.com/intl/fr/appengine/docs/python/too

[google-appengine] Re: Like Search

2009-06-13 Thread Neves
; word.like = ["open", "pen", "en", "n"]   #(for 'open') > > as 'op' for example would prefix match on "open" > > (but only works if you need your inequality filter on a different property... > ) > > [1]http://code

[google-appengine] Like Search

2009-06-12 Thread Neves
I have an idea to do LIKE search with small words in GAE. The solution is create a Word model with the follow fields: class Word(db.Model): word = db.StringProperty() like = db.StringListProperty() # usage word = Word() word.word = "open" # with the assignment above, the like property would au

[google-appengine] Re: Email Marketing on GAE

2009-05-18 Thread Neves
Yes. SPAM really sucks. But I will send only emails to clients that opt-in to receive it. As the title says, it is REALLY Email Marketing, not SPAM. On 18 maio, 01:23, Felipe wrote: > It sucks if you are a spamer. For the rest of us this is great. > > On May 17, 2009, at 10:29 PM, Iap wrote: >

[google-appengine] Re: Email Marketing on GAE

2009-05-18 Thread Neves
Well, since the emails would ONLY be sent to signed users who agree to receive it, (with IP and date record when signed) it would not be a problem. Am I right? On 17 maio, 23:29, Iap wrote: > That's really sucks. Can not the almighty GOOGLE do something aganist > the dark power of cyber space? >

[google-appengine] Email Marketing on GAE

2009-05-15 Thread Neves
Since GAE cost is $0.0001 per recipients emailed, it is a low price. Can I build an Email Marketing Tool? --~--~-~--~~~---~--~~ 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] Re: API for programatically adding GAE application domain alias in 'Google Apps' control panel: Service Settings

2009-04-20 Thread Neves
I am waiting for this feature too. On 20 abr, 15:58, Guy Davis wrote: > Hi all, > > An app I'm building is going to use subdomains to separate groups of > users.  For example: > >     group1.myapp.com >     group2.myapp.com > > These are configured in the 'Service Settings' control panel of the

[google-appengine] Re: Access external resources with IP block from GAE

2009-03-25 Thread Neves
I am curious if GAE would add payed fixed ip address like Amazon did. On 24 mar, 06:28, Alars wrote: > Hi all, > > My GAE app needs to access an external service wich uses an IP check. > Is it possible to use a static IP with GAE or does anyone have an idea > for a workaround? (I dont want to pa

[google-appengine] Re: Does anyone know how to implement a file upload progress bar

2009-03-25 Thread Neves
Since GAE returns the server response only when its complete, the only way to do file upload progress is using Flash, like in http://swfupload.org/ On 25 mar, 02:05, ni wrote: > I am trying to add a file update functionality to my application and > it works fine.  However, when loading large fil

[google-appengine] Re: receiving email

2009-03-20 Thread Neves
Incoming email support http://code.google.com/intl/pt-BR/appengine/docs/roadmap.html On 20 mar, 11:12, Ronn Ross wrote: > I would like people to email may app and it show up in the app. So that way > it can work like a help desk system. If there anyway to do that through app > engine? Can you pu

[google-appengine] Re: Can´t create new apps

2009-02-27 Thread Neves
; > http://appengine.google.com/a/qi64.com > > -Marzia > > > > On Thu, Feb 26, 2009 at 7:33 PM, Neves wrote: > > > To make sure that it was not an account problem, I create a new > > account, > > and create a new application with ID "e-mail4all" &g

[google-appengine] Re: Can´t create new apps

2009-02-26 Thread Neves
me. Try to create a fresh account to see what happens. On 26 fev, 21:57, Neves wrote: > Marzia, it´s getting even more weird. > Now I created 6 applications without error, but it didn´t showup on my > dashboard and when I try to create it again, it says that it´s already > exists. &

[google-appengine] Re: Can´t create new apps

2009-02-26 Thread Neves
le, it would be easier if you > could get the complete headers when using, for instance, the string > gdlefj3osje943j2342kdl which we know is not available. > > Are you trying both of these machines from the same location / IP addresses? > > -Marzia > > > > On Thu, Feb

[google-appengine] Re: Can´t create new apps

2009-02-26 Thread Neves
t; > Can you still see your previously created applications when you sign in > tohttp://appengine.google.com? Can you upload your app to those previously > created app ids? > > -Marzia > > > > On Thu, Feb 26, 2009 at 11:06 AM, Neves wrote: > > > I always get this mes

[google-appengine] Can´t create new apps

2009-02-26 Thread Neves
I always get this message "This application ID or version is already in use" while creating a new app, even if I choose a random ID like "gdlefj3osje943j2342kdl.appspot.com" --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gro

[google-appengine] Still "This application ID or version is already in use" Error

2009-02-26 Thread Neves
Has any body had success creating a new app? It has past almost a month with the same problem no matter what browser I use. http://code.google.com/p/googleappengine/issues/detail?id=1038 --~--~-~--~~~---~--~~ You received this message because you are subscribed to t

[google-appengine] Re: About new Limits

2009-02-15 Thread Neves
d serve static files up to 10MB, so if you are using > >> static files you should not have an issue.  However, the limit on datastore > >> entity size is still 1MB, so you couldn't store a 10MB file in the > >> datastore > >> after a user upload, for instan

[google-appengine] Re: About new Limits

2009-02-13 Thread Neves
That´s right. Any body knows if I´m right? On 13 fev, 12:35, "Michael O'Brien" wrote: > I would imagine the 10MB is for static files that are served directly > by your app... > > Michael > > On Feb 13, 1:55 pm, Neves wrote: > > > > > The

[google-appengine] About new Limits

2009-02-13 Thread Neves
The new HTTP request/response limit is 10MB, but the datastorage limit still 1MB. So, if I upload a 10MB file, I need to split it em 10MB parts to storage it? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Ap