[google-appengine] [RESOLVED]: Custom HTTP 404/500 messages

2008-09-30 Thread Martynas Brijunas
Hi Alex, > The template directory is specified in the settings.py, for example: > TEMPLATE_DIRS = ( >     os.path.join(os.path.dirname(__file__), 'templates'), > ) I could not find any instructions on how to use settings.py with the plain GAE. However, I came accross one of your older posts here

[google-appengine] Re: Compress Files

2008-09-30 Thread Thomas Johansson
You can only send and receive 1Mb of data at a time on AppEngine currently. Similarly, you can only store 1Mb app files and datastore blobs. On Sep 30, 9:24 pm, ipburbank <[EMAIL PROTECTED]> wrote: > hmm... that looks as though it is only for site code, i'm talking > about 100 mb + files... > > O

[google-appengine] Re: Any Site in Production Use ?

2008-09-30 Thread Bill
I know buddypoke.com is using AppEngine. It's a fairly successful app under heavy load. (I want to say hundreds of requests per second but can't say my memory is correct there.) On Sep 30, 2:21 am, "Feris Thia" <[EMAIL PROTECTED]> wrote: > Hi All, > > I understand that GAE is still in preview u

[google-appengine] Re: multiple or single trips to the data store (speed and cpu cycles)

2008-09-30 Thread Bill
Try using fetch instead of treating the GqlQuery object as an iterable. If you had included a LIMIT or OFFSET clause, it would automatically be retrieved by fetch. So it would be something like: users = db.GqlQuery(toquery).fetch(limit=1000) See http://code.google.com/appengine/docs/datastore/q

[google-appengine] What to expect if an account is created after a User instance?

2008-09-30 Thread pr3d4t0r
Greetings. I'm trying to determine what the behaviour for a User instance (and the application) is if the Google Account is created *after* a User is instantiated and added to the Datastore. Scenario 1: a) User instance is created with email = [EMAIL PROTECTED] b) [EMAIL PROTECTED] is crated in

[google-appengine] multiple or single trips to the data store (speed and cpu cycles)

2008-09-30 Thread [EMAIL PROTECTED]
my app is producing significantly high mcycles used results. i have debugged it and determined that the problem is in my for loop. So I tried two versions and both are too slow. Version 1: somestuff = ['cat', 'dog', 'cow']; toquery = "SELECT * FROM Animals Where id IN (" + somestuff + ")" users

[google-appengine] ProtocolBufferDecodeError

2008-09-30 Thread Jeff
Has anyone seen this error before? It is coming up ~ every 5th attempt to load the site and I can't figure out what this is. Anyone have ideas about what could be causing this? It seems to be happening during a fetch of items from the Datastore. Any suggestions on how to fix this? ProtocolBuf

[google-appengine] Re: TONS of High Amount CPU Warnings!!

2008-09-30 Thread mitnickcbc
It's not solved... Quota denials coming back again. It just be normal for about half an hour. It has been 24 hours that during some period, high volume of high CPU warning coming and some period, not a single warning at all. I have removed all related memcache, but still seeing this. On 10月1日,

[google-appengine] Re: bulk export

2008-09-30 Thread Garrett Davis
Yes. I built a bulk download module. Please read about it here: http://code.google.com/p/gawsh/wiki/BulkDownload and download it from http://code.google.com/p/gawsh/downloads/list If it works for you, please let me know. If it doesn't work for you, please let me know that as well. On Sep 26, 4:

[google-appengine] Re: Compilation of unanswered datastore questions

2008-09-30 Thread Bill
Here's another question: What's the best practice for handling timeout (and other) db errors? This is partly prompted by ryan's recent comment that "regardless of how your data is shaped, you'll at least see a small timeout rate. .01% is in the ballpark." [http:// groups.google.com/group/googl

[google-appengine] Re: Terrible

2008-09-30 Thread Sal
I enjoyed reading this thread. Thank you all. :D On Sep 30, 4:19 am, "Barry Hunter" <[EMAIL PROTECTED]> wrote: > On Mon, Sep 29, 2008 at 11:43 PM, zunzun <[EMAIL PROTECTED]> wrote: > > > I just hope a user and a unuser never actully meet, the anti-matter > explosion could destroy the earth! > --~

[google-appengine] Re: Terrible

2008-09-30 Thread zunzun
As I recall, unusers drink 7-Up because it's the uncola. James On Sep 30, 9:01 am, Martynas Brijunas <[EMAIL PROTECTED]> wrote: > > I just hope a user and a unuser never actully meet, the anti-matter > > explosion could destroy the earth! > > Colleagues are looking at me as if I am crazy, c

[google-appengine] Re: Registering from a non-listed country

2008-09-30 Thread Milton Segura
Thanks Jeff, I tried that when you told me but so far nothing has happened yet.. so I'll just wait and try some other day On Sep 25, 12:22 pm, Jeff S <[EMAIL PROTECTED]> wrote: > Hi Milton, > > Registering when SMS is unavailable is covered in our > FAQs:http://code.google.com/appengine/kb/sms.h

[google-appengine] Re: TypeError: 'NoneType' object is unsubscriptable

2008-09-30 Thread Venkatesh Rangarajan
Its a search able model ? The documentation says they don't need indexes. Can you please advice me what index I should add ? Here is my query below. def db_visas(keyword, offset): visas=[] query = search.SearchableQuery('Visa') query.Search(keyword) for result in query.Get(101, offset): vis

[google-appengine] Re: TypeError: 'NoneType' object is unsubscriptable

2008-09-30 Thread Marzia Niccolai
Hi, Actually, upon further inspection, this is an issue of the query you are running needing an index, but since the query doesn't need one in most cases, we can't print the definition. Please add indexes for the queries experiencing these issues. -Marzia On Tue, Sep 30, 2008 at 2:47 PM, Venkat

[google-appengine] Upgrade to GoogleAppEngineLauncher 1.1.4 breaks apps running on 1.1.3

2008-09-30 Thread esciara
Hi there, I posted this as issue 748 ( http://groups.google.com/group/google-appengine ) but should probably have asked this group first I guess. Looks like this is an environment development settings problem that followed the automatic upgrade 1.1.3 -> 1.1.4, but after that I tried to roll back

[google-appengine] Re: TONS of High Amount CPU Warnings!!

2008-09-30 Thread Marzia Niccolai
Hi, Can you please provide more information on what happened in this case? What code was causing the issue, and how removing memcache would have helped with this? Thanks, Marzia On Tue, Sep 30, 2008 at 11:06 AM, jeremysomething < [EMAIL PROTECTED]> wrote: > > I was getting similar things this

[google-appengine] Re: TONS of High Amount CPU Warnings!!

2008-09-30 Thread mitnickcbc
Thanks Jeremy, you saved my life... It is an issue related with memcache. I did a flush but it isn't back to normal immediately. Then I removed one most common memcache call and it works now. On Oct 1, 2:06 am, jeremysomething <[EMAIL PROTECTED]> wrote: > I was getting similar things this weeke

[google-appengine] Re: Too Many Versions (403)

2008-09-30 Thread Venkatesh Rangarajan
Okay. I deleted all the versions ( from appengine console in PROD). Now I was able to create a new version. Rgds, Venkatesh --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this g

[google-appengine] Re: A few feature suggestions

2008-09-30 Thread shday
> - Could we get a graphical data manager for the local environment like > we do with the administration console?  Or am I just not aware of this > one. I think you're looking for this: http://localhost:8080/_ah/admin/datastore --~--~-~--~~~---~--~~ You received

[google-appengine] Re: Too Many Versions (403)

2008-09-30 Thread Marzia Niccolai
This is most likely http://code.google.com/p/googleappengine/issues/detail?id=690 Please try iterating the major version number in your app.yaml file. -Marzia On Tue, Sep 30, 2008 at 2:42 PM, Venkatesh Rangarajan < [EMAIL PROTECTED]> wrote: > I have 11 versions in all..my default version is 9.5

[google-appengine] Re: TypeError: 'NoneType' object is unsubscriptable

2008-09-30 Thread Venkatesh Rangarajan
And yes, my model is defined as a searchable entity. Using the default bulk-loader code with no tweaking. def HandleEntity(self, entity): ent = search.SearchableEntity(entity) return ent --~--~-~--~~~---~--~~ You received this message because you are subscr

[google-appengine] Re: Too Many Versions (403)

2008-09-30 Thread Venkatesh Rangarajan
I have 11 versions in all..my default version is 9.5 I can't update either version 11 or version 9, neither can I add a new version 12. On Tue, Sep 30, 2008 at 2:18 PM, Aral Balkan <[EMAIL PROTECTED]> wrote: > > How many versions did you have? (I'm assuming you've hit some sort of > upper limi

[google-appengine] Re: TypeError: 'NoneType' object is unsubscriptable

2008-09-30 Thread Venkatesh Rangarajan
Hi Marzia, I think this issue is not related to the offset, because the same query was working fine previously. It started failing after the volume of data increased . I think the current volume is 700K (700+ MB). I am using offset to limit 100 records per page. Refer to : http://payrate.appspot

[google-appengine] Re: TypeError: 'NoneType' object is unsubscriptable

2008-09-30 Thread Marzia Niccolai
Hi, I believe this is related to the 'offset' that you are are using, and am curious if you could elaborate more as to with which values of 'offset' this occurs and the number of results you think you have in your results set. -Marzia On Mon, Sep 29, 2008 at 9:07 AM, Venkatesh Rangarajan < [EMAI

[google-appengine] Re: Too Many Versions (403)

2008-09-30 Thread Aral Balkan
How many versions did you have? (I'm assuming you've hit some sort of upper limit on _minor_ versions?) Aral On Sep 30, 7:34 pm, "Venkatesh Rangarajan" <[EMAIL PROTECTED]> wrote: > Hi, > I am getting the following error when I try to upload my app. Been having > this since last night and cannot

[google-appengine] Re: Fixing Blob output for db.Model.to_xml()

2008-09-30 Thread Rafe
No it does not at this time. On Sep 30, 12:49 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > Does "db.Model.from_xml(xmlstring)" exist? > > On Sep 30, 8:58 pm, Sylvain <[EMAIL PROTECTED]> wrote: > > > Cool :) > > > I like the to_xml function, but it was broken with a model with a blob > > > Pr

[google-appengine] Re: Fixing Blob output for db.Model.to_xml()

2008-09-30 Thread Rafe
Actually, that's an idea. Include a bit of additional info with the data. But maybe those bits of info should go in to attributes? On Sep 30, 11:58 am, Sylvain <[EMAIL PROTECTED]> wrote: > Cool :) > > I like the to_xml function, but it was broken with a model with a blob > > Print the same th

[google-appengine] [Feature Suggestions] The Model Class -- "from_xml(xmlstring)"

2008-09-30 Thread Davide Rognoni
Now exists "to_xml()" -- Returns an XML representation of the model instance. This will be useful "from_xml(xmlstring)" -- Returns a model instance of the XML representation. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[google-appengine] Re: Are all servers in the cloud up to date?

2008-09-30 Thread [EMAIL PROTECTED]
This one: (issue 588) http://code.google.com/p/googleappengine/issues/detail?id=588&can=5&q=eoferror&colspec=ID%20Type%20Status%20Priority%20Stars%20Owner%20Summary%20Log On Sep 30, 3:34 pm, "Marzia Niccolai" <[EMAIL PROTECTED]> wrote: > Hi, > > All servers on App Engine are running the same ver

[google-appengine] Re: A few feature suggestions

2008-09-30 Thread Davide Rognoni
I vote this :-) - Show each previous version in the admini console Versions list with an option to 'Download'. I guess this would then be a form of version control. On Sep 30, 8:10 pm, Robert Schultz <[EMAIL PROTECTED]> wrote: > I've been using the Google App Engine for a few weeks now, with a

[google-appengine] Re: Fixing Blob output for db.Model.to_xml()

2008-09-30 Thread Davide Rognoni
Does "db.Model.from_xml(xmlstring)" exist? On Sep 30, 8:58 pm, Sylvain <[EMAIL PROTECTED]> wrote: > Cool :) > > I like the to_xml function, but it was broken with a model with a blob > > Print the same thing than the data viewer ? > Something like that : > > "4013 bytes, SHA-1 = 250d99ae712b26f50

[google-appengine] Re: Are all servers in the cloud up to date?

2008-09-30 Thread Marzia Niccolai
Hi, All servers on App Engine are running the same version of App Engine, so this is not the issue. What was the issue fix that you believe fixed this for appengine utilities? -Marzia On Tue, Sep 30, 2008 at 5:54 AM, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > > http://code.google.com/p/ap

[google-appengine] Re: Compress Files

2008-09-30 Thread Davide Rognoni
Yes, the example is your GAE output. The GAE input will be: "URL Fetch API" http://code.google.com/appengine/docs/urlfetch/overview.html On Sep 30, 9:24 pm, ipburbank <[EMAIL PROTECTED]> wrote: > hmm... that looks as though it is only for site code, i'm talking > about 100 mb + files... > > On

[google-appengine] Re: Ridiculously High Profile Data for query.fetch

2008-09-30 Thread Marzia Niccolai
Hi Patrick, The profiler for the dev_appserver won't be very informative for optimizing your app in production when it comes to the datastore, the datastore on the dev_appserver is basically a flat file. You should run the profiler in production. Instructions on how to do this can be found in th

[google-appengine] Re: Compress Files

2008-09-30 Thread ipburbank
hmm... that looks as though it is only for site code, i'm talking about 100 mb + files... On Sep 30, 3:12 pm, Davide Rognoni <[EMAIL PROTECTED]> wrote: > "ZipMe : Download sources of your GAE website, as a zip > file"http://manatlan.com/blog/zipme___download_sources_of_your_gae_website... > > On

[google-appengine] Re: Warning 1221mcycles /!\ 0kb

2008-09-30 Thread Davide Rognoni
Hi Marzia, thanks for your response :-) Now I don't see the Warning. My example is all: no other module or pre-processing. -- David(e) On Sep 30, 9:03 pm, "Marzia Niccolai" <[EMAIL PROTECTED]> wrote: > Hi Davide, > > I've posted this exact same code in one of my apps, but am unable to > replic

[google-appengine] Re: Compress Files

2008-09-30 Thread Davide Rognoni
"ZipMe : Download sources of your GAE website, as a zip file" http://manatlan.com/blog/zipme___download_sources_of_your_gae_website__as_a_zip_file On Sep 30, 8:47 pm, ipburbank <[EMAIL PROTECTED]> wrote: > I have an amazon s3 account, and was hoping that I could make the > user's life easier by

[google-appengine] Re: Warning 1221mcycles /!\ 0kb

2008-09-30 Thread Marzia Niccolai
Hi Davide, I've posted this exact same code in one of my apps, but am unable to replicate this warning. In fact I'm consistently getting around 5 mcycles in my log for this page. Can you provide some more information, or the specific example? Also, is your application doing any additional module

[google-appengine] Re: Fixing Blob output for db.Model.to_xml()

2008-09-30 Thread Sylvain
Cool :) I like the to_xml function, but it was broken with a model with a blob Print the same thing than the data viewer ? Something like that : "4013 bytes, SHA-1 = 250d99ae712b26f50a26d2232c02ec3c3f05f789" Regards On 30 sep, 20:32, Rafe <[EMAIL PROTECTED]> wrote: > Folks, > > Rafe Kapl

[google-appengine] Re: .net

2008-09-30 Thread Davide Rognoni
.NET coding is possible with: http://pyoohtml.appspot.com/IronBrowser On Sep 30, 3:32 pm, Wooble <[EMAIL PROTECTED]> wrote: > On Sep 30, 6:33 am, amshuhu <[EMAIL PROTECTED]> wrote: > > > HI Developers and Moderators, in our GAE ".net" coding is possible? > > No.  Well, not unless you want to wri

[google-appengine] A few feature suggestions

2008-09-30 Thread Robert Schultz
I've been using the Google App Engine for a few weeks now, with a site live and am decently impressed. To go from being a .net developer to writing Python and having my site live in 72 hours upon account creation was fun. To get to the point, I've run across a few things I would like to mention

[google-appengine] Compress Files

2008-09-30 Thread ipburbank
I have an amazon s3 account, and was hoping that I could make the user's life easier by compressing files before they download them from my website (like gmail). The idea being like a shopping cart, when the user clicks download it adds it to the 'shopping cart' and then after all of the files for

[google-appengine] Re: Announcement: Pycmds, a web-based command line

2008-09-30 Thread Davide Rognoni
I like it :-) Add here http://appgallery.appspot.com/ On Sep 30, 1:29 am, Chris Tan <[EMAIL PROTECTED]> wrote: > http://www.pycmds.org > > Features: > Auto-suggest for commands and inputs > Auto-complete > Simple API > > There are still many kinks to work out with the client side code. > > Sugg

[google-appengine] Too Many Versions (403)

2008-09-30 Thread Venkatesh Rangarajan
Hi, I am getting the following error when I try to upload my app. Been having this since last night and cannot update my APP at all ? Closing update. 2008-09-30 11:32:49,500 ERROR appcfg.py:1070 An unexpected error occurred. Ab ing. Rolling back the update. Error 403: --- begin server output ---

[google-appengine] Fixing Blob output for db.Model.to_xml()

2008-09-30 Thread Rafe
Folks, Rafe Kaplan of the AppEngine team here. I'm going to fix a small issue that might effect applications that want to export Blob data as XML. It's been reported as issue 430, and you can read about it here: http://code.google.com/p/googleappengine/issues/detail?id=430 The output

[google-appengine] Re: TONS of High Amount CPU Warnings!!

2008-09-30 Thread jeremysomething
I was getting similar things this weekend. No code changes, but everything was getting denials. Are you using memcache? For me, these were taking to long and using alot of CPU in simple memcache gets.. I flushed the cache and haven't seen a quota denial since. On Sep 30, 7:10 am, mitnickcbc <[

[google-appengine] Re: No module named pwd - even though no instance of "import pwd" exists in the codebase

2008-09-30 Thread Marzia Niccolai
Hi, The import pwd doesn't actually occur in your code, but in a standard library that is called by django/utils/translation/ trans_real.py. Due to the sandbox restrictions, I believe that there are still some issues using all of Django's internationalization functionality. It seems as though th

[google-appengine] Re: How do i embedd an image or html code while sending email in appengine ?

2008-09-30 Thread Sylvain
Check my little project : http://formamail.appspot.com/ Source available Regards On 30 sep, 11:31, "Rahul Devassy" <[EMAIL PROTECTED]> wrote: > please explain to me how to embedd an image ot html code while sending email > in appengine ... --~--~-~--~~~---~--~~

[google-appengine] Re: Not 48 hours but indexes stuck

2008-09-30 Thread Marzia Niccolai
Hi, Several hours is not out of the question, but more than a day is most likely worrisome. If you are still having this issue, please reply to me directly with the app id and I can look in to it further. -Marzia On Sun, Sep 28, 2008 at 10:51 AM, abwaters <[EMAIL PROTECTED]> wrote: > > It's on

[google-appengine] Re: ReferenceProperty - id access without fetching the entity

2008-09-30 Thread Marzia Niccolai
Hi, The method that you are using currently works, but there is no guarantee that it will continue to work in the future - by which I mean that the current API design only specifies that ReferenceProperty is fetched from the datastore when referenced. We've had requests that there be a way to exp

[google-appengine] Re: Application statistics are currently unavailable?

2008-09-30 Thread Marzia Niccolai
Hi, This was a result of the downtime that we had yesterday ( http://groups.google.com/group/google-appengine-downtime-notify/browse_thread/thread/3759c0d44c13886a), but the dashboard should now be back to normal. -Marzia On Tue, Sep 30, 2008 at 1:01 AM, Sylvain <[EMAIL PROTECTED]> wrote: > > Y

[google-appengine] Re: Question about effect of ListProperty on index size and put times

2008-09-30 Thread Alex Epshteyn
Hi Ryan, Thanks for your explanation! Actually, upon further analysis my write timeout rate is more like 1-3% and timeouts happen every 5 - 10 minutes throughout the day. Although I have retry logic to deal with this, I feel uneasy with so many errors in my logs. It doesn't sound like you think

[google-appengine] Re: appengine.google.com/start -- redirect loop

2008-09-30 Thread shaunc
Thanks for the reply Alexander. I think I've got it diagnosed now, but I don't know what to do about it. Apparently, although it is for my google apps domain, I must have created it with my previously existing google account. When I am in my google apps account, if I go to appengine.google.com/

[google-appengine] Re: Timeout - operation took too long

2008-09-30 Thread johnP
For a while today, I started seeing errors in custom form validation. Requesting self.instance in ModelForm form resulted in ValueErrors. Now, it seems to have recovered a bit... On Sep 30, 9:43 am, Adam Loving <[EMAIL PROTECTED]> wrote: > I am seeing the datastore timeout error intermitten

[google-appengine] Re: Question about effect of ListProperty on index size and put times

2008-09-30 Thread ryan
hi alex! serializing the list property into json shouldn't make much of a difference in the timeout rate, but you're welcome to try it. honestly, though, .01% is noticeable, but i wouldn't exactly call it "large." regardless of how your data is shaped, you'll at least see a small timeout rate. .01

[google-appengine] Re: Timeout - operation took too long

2008-09-30 Thread Adam Loving
I am seeing the datastore timeout error intermittently several times a day (application = toyvirtualgifts) on a fairly simple put operation. Could this be caused by the rest of the request taking too long (like if the timeout for the entire request fires during the put)? It doesn't seem like that

[google-appengine] Question about effect of ListProperty on index size and put times

2008-09-30 Thread Alex Epshteyn
I have an entity with a db.ListProperty(float), each instance having about 10 values in the list. I have no custom indexes on this property. A relatively large number of puts (0.01%) on this entity kind end up in timeout. I'm wondering if removing this list property will reduce the risk of time

[google-appengine] How do i embedd an image or html code while sending email in appengine ?

2008-09-30 Thread Rahul Devassy
please explain to me how to embedd an image ot html code while sending email in appengine ... --~--~-~--~~~---~--~~ 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-appe

[google-appengine] Re: Who would post a detailed app with testcases powered by gaeunit?

2008-09-30 Thread Issac Trotts
This time I followed the instructions more closely, using dev_appserver.py instead of the graphical App Engine launcher on Mac OS X, and putting a test case in the test/ directory. It runs fine. Thanks for making this available! On Tue, Sep 30, 2008 at 12:32 AM, Issac Trotts <[EMAIL PROTECTED]>w

[google-appengine] Re: Who would post a detailed app with testcases powered by gaeunit?

2008-09-30 Thread Issac Trotts
GAEUnit looks useful, but when I followed the instructions I got a traceback: Traceback (most recent call last): File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/webapp/__init__.py", line 4

[google-appengine] Re: Any Site in Production Use ?

2008-09-30 Thread theo
I'd like to second this, and perhaps offer a bit of clarification. I've been involved in a project for some time now (I've been a user from the very beginning), and I've been constantly frustrated with some of the features of App Engine. In some ways, it's been amazing. The fact that one is cons

[google-appengine] Re: Terrible

2008-09-30 Thread Martynas Brijunas
> I just hope a user and a unuser never actully meet, the anti-matter > explosion could destroy the earth! Colleagues are looking at me as if I am crazy, cannot stop laughing --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goog

[google-appengine] Textmate bundle

2008-09-30 Thread Sudhir
I'm making a Textmate bundle for the app engine... those interested can take a look and give feedback and feature requests... http://corn-man.blogspot.com/2008/09/google-app-engine-ahoy.html Do keep in mind that its a bare start, so I'm adding stuff slowly as i go along. Also making a bundle for

[google-appengine] Re: .net

2008-09-30 Thread Wooble
On Sep 30, 6:33 am, amshuhu <[EMAIL PROTECTED]> wrote: > HI Developers and Moderators, in our GAE ".net" coding is possible? No. Well, not unless you want to write a pure Python library that emulates the .net API. --~--~-~--~~~---~--~~ You received this message

[google-appengine] Re: Question about SDK Redistribution

2008-09-30 Thread Wooble
I'm not a lawyer, but the SDK is under the Apache license, so yes, you should be able to redistribute it as long as you follow the terms of the license. I believe your package can be under just about any license you want except GPLv2; the Apache license has language about patents that is consider

[google-appengine] Re: Did something change on the live site for caching?

2008-09-30 Thread Sylvain
Can you check this issue : http://code.google.com/p/googleappengine/issues/detail?id=732 Since 1.1.3, I think, there is an error with caching (Expiration date). Even the Dashboard has this issue. Regards On 30 sep, 14:53, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > http://gaeutilities.

[google-appengine] Are all servers in the cloud up to date?

2008-09-30 Thread [EMAIL PROTECTED]
http://code.google.com/p/appengine-utitlies/issues/detail?id=33 This issue was recently filed on the appengine-utilities project. This problem was actually resolved several updates ago when some changes were made for the pickling process. Seeing it happen live now causes me to be concerned that n

[google-appengine] Did something change on the live site for caching?

2008-09-30 Thread [EMAIL PROTECTED]
http://gaeutilities.appspot.com/flash The setting a flash message then display on the next page view used to work correctly on this demo page. However, while looking into another problem (which will be my next post) I noticed that I have to shift- refresh to see the flash messages now. It looks l

[google-appengine] Re: Terrible

2008-09-30 Thread Barry Hunter
On Mon, Sep 29, 2008 at 11:43 PM, zunzun <[EMAIL PROTECTED]> wrote: > > What is unistalling? > > What is an unuser? I just hope a user and a unuser never actully meet, the anti-matter explosion could destroy the earth! > > James > > On Sep 27, 9:48 pm, rc <[EMAIL PROTECTED]> wrote: >> This i

[google-appengine] TONS of High Amount CPU Warnings!!

2008-09-30 Thread mitnickcbc
It has been 6 hours that my app is total unavailable due to quota denials caused by abnormal amount of high amount CPU warnings. I didn't change a single line of code and most of my requests start throwing this warning. Any change in logic about high CPU warning? Lowering this high CPU bar will ki

[google-appengine] Re: appengine.google.com/start -- redirect loop

2008-09-30 Thread Alexander Kojevnikov
You are probably trying to login using a Google Apps account. If so, you should use this link: http://appengine.google.com/a// On Sep 30, 4:10 pm, shaunc <[EMAIL PROTECTED]> wrote: > When I try to log into the admin console, I get sent in a redirect > loop > > I am not sure how to debug this.

[google-appengine] Re: Resuming a Partially Loaded Bulk Load

2008-09-30 Thread Canis
I submitted a patch to the GAE Issue Tracker for this, back in June -- you may find it helpful: http://code.google.com/p/googleappengine/issues/detail?id=511 On Sep 27, 6:47 am, Ones Self <[EMAIL PROTECTED]> wrote: > Hi All, > > I'm trying to load a large amount of data to my application using

[google-appengine] Re: Custom HTTP 404/500 messages

2008-09-30 Thread Alexander Kojevnikov
> > If you are using Django under GAE, just add your 404.html and 500.html > > templates to the templates folder. Django will take care of the rest. > > thank you for your reply. Let me slightly rephrase the question - can > this be done with the built in django (I believe Google have built in > v

[google-appengine] .net

2008-09-30 Thread amshuhu
HI Developers and Moderators, in our GAE ".net" coding is possible? --~--~-~--~~~---~--~~ 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

[google-appengine] Re: Any Site in Production Use ?

2008-09-30 Thread mitnickcbc
I do, full production. And my suggestion is not to use it for production. You can have very easy start with GAE since no server config, easy deploy and tons of other good things. But you will get more pain of growth due to these issues: 1. Manually quota increase process. This is not a problem if

[google-appengine] Re: Strange patterns in traffic graph - do these indicate app engine problems?

2008-09-30 Thread Sylvain
Yes, for my app, it is the same thing. Very strange. On 29 sep, 21:44, Alex Epshteyn <[EMAIL PROTECTED]> wrote: > Every once in a while I see my traffic (requests/seconds) graph dotted > with zero craters like this graph for the last 24 hours: > > http://tinyurl.com/5xkt6d > > Notice how the fir

[google-appengine] Any Site in Production Use ?

2008-09-30 Thread Feris Thia
Hi All, I understand that GAE is still in preview used only, but I just wonder if anyone has used it in any semi or full production ? And with how many page hits / visitors per day ? -- Thanks & Best Regards, Feris Thia --~--~-~--~~~---~--~~ You received this me

[google-appengine] Re: Source IP address(es) for fetch API

2008-09-30 Thread David Symonds
On Tue, Sep 30, 2008 at 5:35 PM, David Poblador Garcia <[EMAIL PROTECTED]> wrote: > I'm trying to use an external HTTP service with the Fetch API from the > AppEngine. I'm wondering if there is any way to know which IP > address(es) Google is using for the fetch infrastructure. I'd like to > know

[google-appengine] Re: Strange patterns in traffic graph - do these indicate app engine problems?

2008-09-30 Thread mitnickcbc
Those zeros should be fine. What drives me mad is that the high amount CPU warning is coming like anything during the last 6 hours but I didn't change a single line of code! This makes quota denials heavily and makes request error rate above 10%. On Sep 30, 3:44 am, Alex Epshteyn <[EMAIL PROTECTE

[google-appengine] Re: Application statistics are currently unavailable?

2008-09-30 Thread Sylvain
Yes, same here. On 30 sep, 04:49, mitnickcbc <[EMAIL PROTECTED]> wrote: > This is all I got on Dashboard in Admin Console, performing upgrade or > something else? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Goo

[google-appengine] Source IP address(es) for fetch API

2008-09-30 Thread David Poblador Garcia
Hi all, I'm trying to use an external HTTP service with the Fetch API from the AppEngine. I'm wondering if there is any way to know which IP address(es) Google is using for the fetch infrastructure. I'd like to know that in order to block non-trustable IP addresses in the remote HTTP RPC. Thanks

[google-appengine] Question about SDK Redistribution

2008-09-30 Thread ericsk
Dear all, If I develop an application, am I permitted to include App Engine's SDK in my distributed package? And, should my package declare the same license? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "G