[google-appengine] Issue with GAE caching which gives undesirable results

2009-07-20 Thread PatHaugen

I have multiple domains pointed to Python code merely reporting the
domain name as a test within a H1 tag in a Django template:

h1{{ domain }}/h1

Python code:

class GetDomain():
domain = os.environ['SERVER_NAME']
...
domain = GetDomain.domain
template_values = {
'domain': domain,
}
path = os.path.join(os.path.dirname(__file__), 'index.html')
self.response.out.write(template.render(path, template_values))

The issue I'm having is possibly with GAE caching output and not
processing each time the page is hit.

Example domains:
www.domain1.com
www.domain2.com
www.domain3.com

When I visit any domain the first time, I get the expected result:
h1www.domain3.com/h1

However for the next 5 or so minutes, going to www.domain1.com or
www.domain2.com shows the SAME output:
h1www.domain3.com/h1

GAE is caching the output possibly? What is going on causing this
unexpected result in code that works properly?
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] adding libraries to the application

2009-07-20 Thread mangrar

I'm trying usin Spring Framework with my google app engine app. In my
eclipse project classpath I have the required libraries (spring-
context.jar, spring-beans.jar, spring-web.jar...) but when the
application start the class
org.springframework.web.context.ContextLoaderListener cannot be found,
I get a ClassNotFoundException. I've tried copying the libraries in
war/WEB-INF/lib, but I get the same message. Does anybody know what
I'm doing wrong?
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] memcache entities without ReferenceProperty

2009-07-20 Thread Benedikt

Hi,
I have a list of entities which I want to store in the memcache. The
problem is that I have large Models referenced by their
ReferenceProperty which are automatically also stored in the memcache.
As a result I'm exceeding the size limit for objects stored in
memcache.

Is there any possibility to prevent the ReferenceProperties from
loading the referenced Models while putting them in memcache?

I tried something like

def __getstate__(self):
odict = self.__dict__.copy()
odict['model'] = None
return odict

in the class I want to store in memcache, but that doesn't seem to do
the trick.

Any suggestions would be highly appreciated.
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: memcache entities without ReferenceProperty

2009-07-20 Thread Vince Stross

How are you sure the referenced entities are being stored too?

I always assumed that it's just a query object waiting to be
referenced.

If this is true, I am REALLY interested in a solution as well!


On Jul 20, 4:21 am, Benedikt benedikt.e...@gmail.com wrote:
 Hi,
 I have a list of entities which I want to store in the memcache. The
 problem is that I have large Models referenced by their
 ReferenceProperty which are automatically also stored in the memcache.
 As a result I'm exceeding the size limit for objects stored in
 memcache.

 Is there any possibility to prevent the ReferenceProperties from
 loading the referenced Models while putting them in memcache?

 I tried something like

     def __getstate__(self):
         odict = self.__dict__.copy()
         odict['model'] = None
         return odict

 in the class I want to store in memcache, but that doesn't seem to do
 the trick.

 Any suggestions would be highly appreciated.
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



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

2009-07-20 Thread Atrus

NO, I have not been able to slove this problem.

On Jul 19, 12:33 am, TaoGOGO yuntaotian...@gmail.com wrote:
 have you solve the problems?it happened to me the same?:(
 can you help me?

 On 6月26日, 下午3时04分, dannyr danny...@gmail.com wrote:

  I'm getting the following error. I only have 1 version of the app.
  According to Quota Details, my Deployments are only 28 of 250 (11%).
  My application name is 'launchset'.

  Deploying new version.
  2009-06-25 23:50:52,071 ERROR appcfg.py:1241 An unexpected error
  occurred. Abort
  ing.
  Traceback (most recent call last):
File C:\Program Files\Google\google_appengine\google\appengine\tools
  \appcfg.p
  y, line 1234, in DoUpload
  self.Commit()
File C:\Program Files\Google\google_appengine\google\appengine\tools
  \appcfg.p
  y, line 1106, in Commit
  self.Deploy()
File C:\Program Files\Google\google_appengine\google\appengine\tools
  \appcfg.p
  y, line 1134, in Deploy
  version=self.version)
File C:\Program Files\Google\google_appengine\google\appengine\tools
  \appengin
  e_rpc.py, line 344, in Send
  f = self.opener.open(req)
File C:\Python25\lib\urllib2.py, line 387, in open
  response = meth(req, response)
File C:\Python25\lib\urllib2.py, line 498, in http_response
  'http', request, response, code, msg, hdrs)
File C:\Python25\lib\urllib2.py, line 425, in error
  return self._call_chain(*args)
File C:\Python25\lib\urllib2.py, line 360, in _call_chain
  result = func(*args)
File C:\Python25\lib\urllib2.py, line 506, in http_error_default
  raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
  HTTPError: HTTP Error 403: Forbidden
  Rolling back the update.
  Error 403: --- begin server output ---

  Too ManyVersions(403)
  The application already has themaximumnumberofversions.
  --- end server output ---
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Weird Quotas Error

2009-07-20 Thread Federico Builes



On Jul 19, 4:24 pm, Federico Builes federico.bui...@gmail.com wrote:
 When I log into my dashboard I find the following error message:
    Your application is exceeding a quota: App Config Service Config  
 App Call Count

 And when trying to update I get:

    HTTPError: HTTP Error 403: Forbidden
    Rolling back the update.
    Error 403: --- begin server output ---
    The application already has the maximum number of versions.

 My current number of versions showing in the dashboard is 4.

This was apparently solved when the quotas reset today, but it'd still
like to know what happened. According to some posts online it might be
related to the number of updates pushed in a day, but I was still
around 140, well below the 250 limit.  Is there another limit I don't
know about?

--
Federico
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



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

2009-07-20 Thread j...@zenkraft.com

Yes, I just hit this too:

Error 403:  begin server output ---

Too Many Versions (403)
The application already has the maximum number of versions.
--- end server output ---

On Jul 19, 6:33 am, TaoGOGO yuntaotian...@gmail.com wrote:
 have you solve the problems?it happened to me the same?:(
 can you help me?

 On 6月26日, 下午3时04分, dannyr danny...@gmail.com wrote:

  I'm getting the following error. I only have 1 version of the app.
  According to Quota Details, my Deployments are only 28 of 250 (11%).
  My application name is 'launchset'.

  Deploying new version.
  2009-06-25 23:50:52,071 ERROR appcfg.py:1241 An unexpected error
  occurred. Abort
  ing.
  Traceback (most recent call last):
File C:\Program Files\Google\google_appengine\google\appengine\tools
  \appcfg.p
  y, line 1234, in DoUpload
  self.Commit()
File C:\Program Files\Google\google_appengine\google\appengine\tools
  \appcfg.p
  y, line 1106, in Commit
  self.Deploy()
File C:\Program Files\Google\google_appengine\google\appengine\tools
  \appcfg.p
  y, line 1134, in Deploy
  version=self.version)
File C:\Program Files\Google\google_appengine\google\appengine\tools
  \appengin
  e_rpc.py, line 344, in Send
  f = self.opener.open(req)
File C:\Python25\lib\urllib2.py, line 387, in open
  response = meth(req, response)
File C:\Python25\lib\urllib2.py, line 498, in http_response
  'http', request, response, code, msg, hdrs)
File C:\Python25\lib\urllib2.py, line 425, in error
  return self._call_chain(*args)
File C:\Python25\lib\urllib2.py, line 360, in _call_chain
  result = func(*args)
File C:\Python25\lib\urllib2.py, line 506, in http_error_default
  raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
  HTTPError: HTTP Error 403: Forbidden
  Rolling back the update.
  Error 403: --- begin server output ---

  Too ManyVersions(403)
  The application already has themaximumnumberofversions.
  --- end server output ---



--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] dashboard misreporting stored data?

2009-07-20 Thread contrivedusername

I'm working on a Java app that makes use of the datastore.  I
previously had a few thousand entities stored but just cleared out the
whole thing.  With all of those entities stored, I was at 12% of my
1gb quota.  When I go to the data viewer, I can see that all of those
formerly persisitent entities are gone, but the dashboard still tells
me that I am at 12% of my stored data quota.  What's going on?
Thanks,
Nick

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: SMS Verfication Troubles

2009-07-20 Thread Nicolas

Hi, I have the same problem with Movistar in Argentina, could you help
me as well?

On Jul 14, 6:51 am, Nick Johnson (Google) nick.john...@google.com
wrote:
 Hi Aivar,

 I've manually activated your account.

 -Nick Johnson



 On Sat, Jul 11, 2009 at 8:04 PM, Aivaraivar.anna...@gmail.com wrote:

  Nick, could you please help me too!

  I tried to get verification code to 2 different Estonian carriers (EMT
  and Tele2) without success (waited for 2 days).
  I was also unable to report problem 
  athttp://appengine.google.com/waitlist/sms_issues
  - from there i got error message There were errors:    * Carrier

  thanks in advance!

  Aivar

 --
 Nick Johnson, App Engine Developer Programs Engineer
 Google Ireland Ltd. :: Registered in Dublin, Ireland, Registration
 Number: 368047

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: SMS Verfication Troubles

2009-07-20 Thread Nicolas

Hi, I'm having the same problem with movistar in Argentina, could you
also help me?
Thanks

Nicolas

On Jul 14, 6:51 am, Nick Johnson (Google) nick.john...@google.com
wrote:
 Hi Aivar,

 I've manually activated your account.

 -Nick Johnson



 On Sat, Jul 11, 2009 at 8:04 PM, Aivaraivar.anna...@gmail.com wrote:

  Nick, could you please help me too!

  I tried to get verification code to 2 different Estonian carriers (EMT
  and Tele2) without success (waited for 2 days).
  I was also unable to report problem 
  athttp://appengine.google.com/waitlist/sms_issues
  - from there i got error message There were errors:    * Carrier

  thanks in advance!

  Aivar

 --
 Nick Johnson, App Engine Developer Programs Engineer
 Google Ireland Ltd. :: Registered in Dublin, Ireland, Registration
 Number: 368047

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: SMS Verfication Troubles

2009-07-20 Thread Nicolas

I'm having the same problem with movistar in Argentina

On Jul 14, 9:56 am, Joseph Lam j...@josephlam.net wrote:
 Hi Nick, I'm having the same problem. Would you mind fixing mine as
 well? Thanks.

 Joseph

 On Jul 14, 6:51 am, Nick Johnson (Google) nick.john...@google.com
 wrote:

  Hi Aivar,

  I've manually activated your account.

  -Nick Johnson

  On Sat, Jul 11, 2009 at 8:04 PM, Aivaraivar.anna...@gmail.com wrote:

   Nick, could you please help me too!

   I tried to get verification code to 2 different Estonian carriers (EMT
   and Tele2) without success (waited for 2 days).
   I was also unable to report problem 
   athttp://appengine.google.com/waitlist/sms_issues
   - from there i got error message There were errors:    * Carrier

   thanks in advance!

   Aivar

  --
  Nick Johnson, App Engine Developer Programs Engineer
  Google Ireland Ltd. :: Registered in Dublin, Ireland, Registration
  Number: 368047



--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Any interest in a Boston-area users group?

2009-07-20 Thread mMetry

Interested as well.

On Jun 24, 11:29 am, Adam adam.crossl...@gmail.com wrote:
 Are  there any other AppEngine developers here who are located in the
 greater Boston area who would be interested in starting a Users Group?
 I am willing to organize such a thing if there is sufficient interest.

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: No SMS support for my country

2009-07-20 Thread Pilar Posada Saldarriaga

I'm having the same problem, I'm from Colombia.

Can you help me please, Nick?

Thank you very much.

On Jul 16, 9:17 am, Nick Johnson (Google) nick.john...@google.com
wrote:
 I've activated your account.

 -Nick Johnson

 On Thu, Jul 16, 2009 at 2:24 PM, Munkhbaatargmunkhbaata...@gmail.com wrote:

  Hello, I am from Mongolia,

  I have a problem with Verify Your Account bySMS page. NoSMS
  support for my country.

  Is there any other way of verifying my account?

  Thanks.

 --
 Nick Johnson, App Engine Developer Programs Engineer
 Google Ireland Ltd. :: Registered in Dublin, Ireland, Registration
 Number: 368047

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Import Conctacts not working anymore

2009-07-20 Thread Corina Cojea

Hi. I am trying to read Contacts from my G mail Account dynamic (from
C#).
Until know everything worked just fine , but now I receive 89 names
(like : First Name,E-mail Address etc..)
and 88 values (like : Mark,m...@uu.com...etc)

I would appreciated if you could give me a solution, explanation or
suggest another way in doing this.

Best Regards,
Corina

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Is there a Google Accounts logo/icon to use?

2009-07-20 Thread danilop

Hi,

I'm integrating two different login technologies to my site (Google
Accounts and Facebook Connect), but for the former I can't find a
standard logo/icon that I have the rights to use and put in my login
page.

Any idea?

Regards,
Danilo.

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Issue with GAE caching which gives undesirable results

2009-07-20 Thread Kevin Pierce
Python is caching it at the class level.
It looks like you are defining GetDomain.domain to os.environ['SERVER_NAME']
only once on its first usage per server instance.

a) Try using a property/function to return os.environ['SERVER_NAME']
or
b) use a class instance defined attribute such as

def __init__(self):
self.domain = os.environ['SERVER_NAME']

and instantiate for each server request.

On Mon, Jul 20, 2009 at 12:49 AM, PatHaugen pathau...@gmail.com wrote:


 I have multiple domains pointed to Python code merely reporting the
 domain name as a test within a H1 tag in a Django template:

 h1{{ domain }}/h1

 Python code:

 class GetDomain():
 domain = os.environ['SERVER_NAME']
 ...
 domain = GetDomain.domain
 template_values = {
 'domain': domain,
 }
 path = os.path.join(os.path.dirname(__file__), 'index.html')
 self.response.out.write(template.render(path, template_values))

 The issue I'm having is possibly with GAE caching output and not
 processing each time the page is hit.

 Example domains:
 www.domain1.com
 www.domain2.com
 www.domain3.com

 When I visit any domain the first time, I get the expected result:
 h1www.domain3.com/h1

 However for the next 5 or so minutes, going to www.domain1.com or
 www.domain2.com shows the SAME output:
 h1www.domain3.com/h1

 GAE is caching the output possibly? What is going on causing this
 unexpected result in code that works properly?
 


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: dashboard misreporting stored data?

2009-07-20 Thread 'Αλκης Ευλογημένος
The quota doesn't update instantaneously. Give it until the next quota reset
and it will update.

On Sun, Jul 19, 2009 at 8:17 PM, contrivedusername 
contriveduse...@gmail.com wrote:


 I'm working on a Java app that makes use of the datastore.  I
 previously had a few thousand entities stored but just cleared out the
 whole thing.  With all of those entities stored, I was at 12% of my
 1gb quota.  When I go to the data viewer, I can see that all of those
 formerly persisitent entities are gone, but the dashboard still tells
 me that I am at 12% of my stored data quota.  What's going on?
 Thanks,
 Nick

 



-- 

Alkis

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Can't manage the application

2009-07-20 Thread Jeff S (Google)
Hi SD,
You'll need to access the dashboard for this app through a domain specific
URL. Apps which belong to a Google Apps accounts at example.com are viewable
at:

http://appengine.google.com/a/example.com

Thank you,

Jeff

On Thu, Jul 16, 2009 at 2:18 AM, SD ad...@speed-cupid.com wrote:


 Hi all,
 I created a google app and used the admin account to create the App
 Engine app.
 But then, I can't access the App Engine dashboard.
 http://appengine.google.com/dashboard?app_id=speed-cupid

 Can any googler help?

 Cheers


 


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Cron not working suddenly?

2009-07-20 Thread Kyle Jensen

I have numerous cron jobs, as below, all of which stopped working in
the past few hours.  The requests do not even show up in the requests
section of the 'log' page on app engine's dashboard.

- description: getting new tweets
  url: /cron/fetch-new-tweets/
  schedule: every 5 minutes

- description: getting new blogs
  url: /cron/fetch-new-blogs/
  schedule: every 25 minutes

Anybody else experiencing similar problems?  Appid: psgazettes

Thanks! Kyle
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Cron not working suddenly?

2009-07-20 Thread Kyle Jensen

By the way, I see this across **multiple applications**.  Anybody else?
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: simultaneous dynamic requests, max blob size, multi-blob?

2009-07-20 Thread Wooble



On Jul 18, 8:29 pm, Jeff Enderwick jeff.enderw...@gmail.com wrote:
 Is 10MB the current limit, or is it 1MB? I was under the impression
 that the max blob size was 1MB, and max HTTP response size was 10MB.
 Do I have it right?

API calls are limited to 1MB unless that's been changed without an
announcement fairly recently; you couldn't get more than 1MB into an
entity even if the blob itself could hold it.
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Cron Jobs Not Running (July 20th)

2009-07-20 Thread Brian

Is anyone else having a problem with cron today? None of my cron jobs
have run for several hours (task queues are working fine).

Note to Google: you should include information about cron, and task
queues in the status page.
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: phpAdmin clone for Google's datastore

2009-07-20 Thread Wooble

One you have at least one entity added for a Model programatically,
you can add more using the data viewer.

On Jul 17, 3:22 am, Marcel Overdijk marceloverd...@gmail.com wrote:
 Yep, I want to use it for adding (inserting) data.
 Maybe a feature for the future...

 On Jul 16, 5:46 pm, NealWalters nealwalt...@nealwalters.com wrote:

  There is a tool called Data Viewer in the GAE Admin Console.  Have
  you seen it?
  It displays data rows (10 at a time I think), allows you to scroll
  forward, allow you enter your own GQL command, and allows you to
  update and delete.

  The only trick is that it only works with data already stored.  So for
  example, if you define two tables (classes inheriting from db.Model),
  in your code, and only store one of them, you will only see that one
  table (that actually has data stored) in the Data Viewer.  If later,
  you delete all those rows, you will no longer see that table/patter in
  the viewer, until you store a new row in your code.

  Neal Walters
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Mapping www subdomain results in 'The requested URL / was not found on this server.'

2009-07-20 Thread Wooble

The CNAME record for www.yourdomain.com should be pointing to
ghs.google.com, not to your appspot address (although how it would get
to www.yourapp.appspot.com is a mystery; I think we'd need to see your
DNS record to sort that out).

On Jul 16, 12:50 pm, Dean Del Ponte dean.delpo...@gmail.com wrote:
 I've followed the instructions to get my domain name, purchased on
 GoDaddy, to point to my app athttp://fsmainsite.appspot.com/.

 The problem is, when I log into Google Apps, and go to my settings for
 this application, click on the link tohttp://www.mydomain.com, it
 opens up a new page which displays the URLhttp://www.fsmainsite.appspot.com/
 in the address bar which is incorrect.  The app is hosted 
 athttp://fsmainsite.appspot.com.

 Any help is appreciated.
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Report Dashboard Error

2009-07-20 Thread oldcomputer

again the dashboard count does not match the logs, shows less traffic
by 90% est 

log rotation ?
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Cron Jobs Not Running (July 20th)

2009-07-20 Thread vivpuri

cron jobs for one of my application are also not running.

Vivek


On Jul 20, 7:00 pm, Brian bsmcconn...@gmail.com wrote:
 Is anyone else having a problem with cron today? None of my cron jobs
 have run for several hours (task queues are working fine).

 Note to Google: you should include information about cron, and task
 queues in the status page.
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Too many Versions (403)

2009-07-20 Thread Paul

X-No-Archive: yes

After ~100 updates without changing the version string AppEngine
suddenly
tells me:

 The application already has the maximum number of versions.

Rollback or upload with other version-string did not help, the only
version
cant be deleted, no quote messages, after 3 days still the same.

App-ID: w e b t a b l e t

thanks
Paul

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Cron Hasn't run yet

2009-07-20 Thread Dalius

Hello,

I see Hasn't run yet status in Cron Jobs. Log indicates the same. It
was working fine up until yesterday.

I found that some people experienced this problem but I have not found
solution. Could anybody help me? I have tried updating cron with
different numbers but that doesn't help.

My App Id: tavospauda

Regards,
Dalius

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Pushing data from a Google spreadsheet to an external app

2009-07-20 Thread Murray Spork

Hi,

Not sure if this is the right group to ask this - sorry in advance if
not (and maybe you can point me to the right group to ask).

I want to push data from a Google Spreadsheet to some external web app
- something like what the Coda folks show in this blog:

http://blog.coda2go.com/2008/05/30/google-apps-integration-brings-spreadsheet-joy-to-accountants-2/

I can of course have my external app poll the spreadsheet atom feed -
but I want it to be triggered from the spreadsheet.

Is this possible? If so what is the easiest way to do this?

I've seen google scripts - I imagine it will support this - but of
course I do not have access to that.

I've thought of other possibilities - but they all seem a bit hacky:

* Embedded Gadget that is just a publish button
* use something like Greasemonkey to inject custom javascript logic

Maybe an iGoogle widget would help?

Any ideas/ pointers would be appreciated.

Cheers,
Murray

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Cron Hasn't run yet

2009-07-20 Thread Kyle Jensen

Cron has issues today: 
http://groups.google.com/group/google-appengine/browse_thread/thread/d986086cf721ad9f#

On Jul 20, 12:44 pm, Dalius dalius.dobravols...@gmail.com wrote:
 Hello,

 I see Hasn't run yet status in Cron Jobs. Log indicates the same. It
 was working fine up until yesterday.

 I found that some people experienced this problem but I have not found
 solution. Could anybody help me? I have tried updating cron with
 different numbers but that doesn't help.

 My App Id: tavospauda

 Regards,
 Dalius
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Cron Jobs Not Running (July 20th)

2009-07-20 Thread Bill Mers

we are having the same problem on all of our production applications.
existing cron jobs have stopped running, and new cron jobs never
execute.

Bill

On Jul 21, 8:56 am, vivpuri vivpu...@gmail.com wrote:
 cron jobs for one of my application are also not running.

 Vivek

 On Jul 20, 7:00 pm, Brian bsmcconn...@gmail.com wrote:

  Is anyone else having a problem with cron today? None of my cron jobs
  have run for several hours (task queues are working fine).

  Note to Google: you should include information about cron, and task
  queues in the status page.


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: can not force delete a index with error!

2009-07-20 Thread Jeff S (Google)
Hi Ramesh,

It looks like the errored indices have been deleted. Index deletion can
sometimes take a little while (minutes to possibly hours but this is rare).
Please let me know if the indices that you wanted to remove are still there.

Thank you,

Jeff

On Fri, Jul 17, 2009 at 10:08 AM, Ramesh Thiruchelvam 
ramesh.thiruchel...@gmail.com wrote:


 I've the sample problem, my app id is sri-lankan, and my index City is
 having the problem.

 I tried appcfg.py vacuum_indexes many times but it didn't work.

 Please help me.

 Kr,
 Ramesh

 On Jul 13, 7:38 pm, jb j.b...@gmx.de wrote:
  Hello,
 
  all myindexare stuck at error for some days now. I tried to
  vacuum_indexes and update_indexes but nothing happend.  Could anyone
  from google take a look at my indexes?  My app id is iferienhaus.
 
  Thanks.
 
  On Jul 1, 12:13 am, Jeff S (Google) j...@google.com wrote:
 
   Hello hu,
 
   I think the issues with adobeman's app have been addressed. What is
 your app
   ID? I'll take a look.
 
   Thank you,
 
   Jeff
 
   On Tue, Jun 30, 2009 at 2:32 AM, hu itswa...@gmail.com wrote:
 
i got this problem too,and hope be resolved
 
On Jun 29, 12:13 pm, adobeman xil...@gmail.com wrote:
 I have someindexshowing as error , and tried
 
 appcfg.py vacuum_indexes My_application/
 
 appcfg.py update_indexes My_application/
 
 but after Ideletetheindexby command line, theindexstill shows up
 in the admin page.
 
 Anyone have idea how to effectively clear all the indexs, so I can
 try
 to rebuild the indexes  for my application?- Hide quoted text -
 
   - Show quoted text -

 


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: can not force delete a index with error!

2009-07-20 Thread Jeff S (Google)
Hi jb,

I can confirm that the error indices are still present. Could you try
vacuuming them one more time?

Cheers,

Jeff

On Mon, Jul 13, 2009 at 7:38 AM, jb j.b...@gmx.de wrote:


 Hello,

 all my index are stuck at error for some days now. I tried to
 vacuum_indexes and update_indexes but nothing happend.  Could anyone
 from google take a look at my indexes?  My app id is iferienhaus.

 Thanks.


 On Jul 1, 12:13 am, Jeff S (Google) j...@google.com wrote:
  Hello hu,
 
  I think the issues with adobeman's app have been addressed. What is your
 app
  ID? I'll take a look.
 
  Thank you,
 
  Jeff
 
 
 
  On Tue, Jun 30, 2009 at 2:32 AM, hu itswa...@gmail.com wrote:
 
   i got this problem too,and hope be resolved
 
   On Jun 29, 12:13 pm, adobeman xil...@gmail.com wrote:
I have some index showing as error , and tried
 
appcfg.py vacuum_indexes My_application/
 
appcfg.py update_indexes My_application/
 
but after I delete the index by command line, the index still shows
 up
in the admin page.
 
Anyone have idea how to effectively clear all the indexs, so I can
 try
to rebuild the indexes  for my application?- Hide quoted text -
 
  - Show quoted text -

 


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Application Main Logs not working

2009-07-20 Thread Jeff S (Google)
Hi Richard,

Feel free to email your app ID to me directly if you do not want it shared
with the group.

Thank you,

Jeff

On Fri, Jul 17, 2009 at 7:59 PM, richard emberson 
richard.ember...@gmail.com wrote:


 How to I tell you my app ID with out telling everyone else?
 I have only one app ID so I assume there is some mapping
 from gmail address to app ID.

 My logs page has not changed since 7-13.

 The logs page log level values do not reflect either
 Sun logger levels or Apache log4j levels. Where does
 trace and config fine, finer and finest show up?

 I was allowing exceptions to pass up the stack beyond
 my servlet code. Maybe that caused the
 HttpServletResponse.SC_INTERNAL_SERVER_ERROR 500
 error code.

 Richard

 Jeff S (Google) wrote:
  Hi Richard,
 
  Could you tell us your app ID and one of the request which resulted in a
  500 error? I'd be happy to look into this but there are quite a few
  things which could cause a 500 error, including typos in source code and
  such.
 
  Thank you,
 
  Jeff
 
  On Wed, Jul 15, 2009 at 11:38 AM, richard emberson
  richard.ember...@gmail.com mailto:richard.ember...@gmail.com wrote:
 
 
 
  When I send in a request that ought to log something
  at the INFO level, nothing shows up in the Log viewer.
 
  When I make some requests I get a 500 response code,
  internal server error, but nothing shows up in the
  Log viewer. So, I can not tell what the problem is.
 
  Richard
  --
  Quis custodiet ipsos custodes
 
 
 
 
  

 --
 Quis custodiet ipsos custodes

 


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Cron Jobs Not Running (July 20th)

2009-07-20 Thread Vignesh

same problem here ... ny crons on multyple applications have stopped
running... and it has been around 6 hours...

On Jul 20, 5:50 pm, Bill Mers bill.w.m...@gmail.com wrote:
 we are having the same problem on all of our production applications.
 existing cron jobs have stopped running, and new cron jobs never
 execute.

 Bill

 On Jul 21, 8:56 am, vivpuri vivpu...@gmail.com wrote:

  cron jobs for one of my application are also not running.

  Vivek

  On Jul 20, 7:00 pm, Brian bsmcconn...@gmail.com wrote:

   Is anyone else having a problem with cron today? None of my cron jobs
   have run for several hours (task queues are working fine).

   Note to Google: you should include information about cron, and task
   queues in the status page.

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Cron Jobs Not Running (July 20th)

2009-07-20 Thread Jeff S (Google)

Hi all,

Apologies, we have been aware of this issue and active in resolving
for several hours now. Adding these services to the status site is a
great idea.

Thank you for notifying us,

Jeff

On Jul 20, 6:23 pm, Vignesh vignesh.isqu...@gmail.com wrote:
 same problem here ... ny crons on multyple applications have stopped
 running... and it has been around 6 hours...

 On Jul 20, 5:50 pm, Bill Mers bill.w.m...@gmail.com wrote:

  we are having the same problem on all of our production applications.
  existing cron jobs have stopped running, and new cron jobs never
  execute.

  Bill

  On Jul 21, 8:56 am, vivpuri vivpu...@gmail.com wrote:

   cron jobs for one of my application are also not running.

   Vivek

   On Jul 20, 7:00 pm, Brian bsmcconn...@gmail.com wrote:

Is anyone else having a problem with cron today? None of my cron jobs
have run for several hours (task queues are working fine).

Note to Google: you should include information about cron, and task
queues in the status page.
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Application Creation

2009-07-20 Thread Jeff S (Google)
Hi Christoph

When you create applications with a Google Apps account, they are listed on
a domain specific App Engine dashboard. See

http://appengine.google.com/a/yourdomain.com

to find the applications that you've created.

Thank you,

Jeff

On Sat, Jul 18, 2009 at 3:48 AM, Christoph pa...@twotigers.de wrote:


 Hello,

 i just created a new Google App Engine Account for my e-mail address
 (which runs over Google Mail) and wanted to create a new application.
 I did so and got no error message (or success message). But when I go
 back to the start screen of the app engine, no current applications
 are listed.

 When I tried to redo my steps, the app id was already in use.
 Strangely, I can even deploy an application to the ID I created via
 the Eclipse plugin and the application is online and accessible. But I
 cannot call the dashboard or any custom pages that need admin
 permissions.

 Has anyone had a similar issue before?

 Thanks for any help.

 Regards,
  Christoph

 


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Cron Jobs Not Running (July 20th)

2009-07-20 Thread Jeff S (Google)
This should now be resolved. Again apologies all.

Happy coding,

Jeff

On Mon, Jul 20, 2009 at 6:34 PM, Jeff S (Google) j...@google.com wrote:


 Hi all,

 Apologies, we have been aware of this issue and active in resolving
 for several hours now. Adding these services to the status site is a
 great idea.

 Thank you for notifying us,

 Jeff

 On Jul 20, 6:23 pm, Vignesh vignesh.isqu...@gmail.com wrote:
  same problem here ... ny crons on multyple applications have stopped
  running... and it has been around 6 hours...
 
  On Jul 20, 5:50 pm, Bill Mers bill.w.m...@gmail.com wrote:
 
   we are having the same problem on all of our production applications.
   existing cron jobs have stopped running, and new cron jobs never
   execute.
 
   Bill
 
   On Jul 21, 8:56 am, vivpuri vivpu...@gmail.com wrote:
 
cron jobs for one of my application are also not running.
 
Vivek
 
On Jul 20, 7:00 pm, Brian bsmcconn...@gmail.com wrote:
 
 Is anyone else having a problem with cron today? None of my cron
 jobs
 have run for several hours (task queues are working fine).
 
 Note to Google: you should include information about cron, and task
 queues in the status page.
 


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Cron not working suddenly?

2009-07-20 Thread Ben

Looks like a known issue now resolved:
http://groups.google.com/group/google-appengine/browse_thread/thread/d986086cf721ad9f/147a518fa9f09589#147a518fa9f09589

On Jul 20, 5:52 pm, Kyle Jensen kljen...@gmail.com wrote:
 By the way, I see this across **multiple applications**.  Anybody else?
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Server Error,please help me

2009-07-20 Thread Ben

This usually means you have too many versions in the management
console.  try deleting some of the versions you have in Administration
 Versions.

On Jul 18, 11:39 am, TaoGOGO yuntaotian...@gmail.com wrote:
 today i update my gae file,and some error happened so i roolback.
 but after roolback about 6 times ,server error happend!
 i can;t update my data,can not upload file,and i when i contol it as a
 user in appengine.google.com, Server Error display!!!
 what happend ,and how to solve the problom?

 the appcfg.py say i have too many versons,but i only upload one!
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: A question abort Creating index for id

2009-07-20 Thread Ben

It is probably conflicting because datastore entities already have an
intrinsic id property.  Try renaming your id to something like
MyID

On Jul 18, 10:03 am, Yao wangyao840...@gmail.com wrote:
 I have created a db Entity named TextRec , and the Entity has an
 property named id by me.

 I want to create an index of the id, but the appcfg.py goes error. The
 error is below:

 Saving authentication cookies to C:\Documents and Settings
 \Administrator/.appcfg
 _cookies
 Cloning 1 application file.
 Closing update.
 Uploading index definitions.
 Error 400: --- begin server output ---
 Creating a composite index failed: This index:
 entity_type: TextRec
 ancestor: false
 Property {
   name: id
   direction: 2

 }

 is not necessary, since single-property indices are built in. Please
 remove it f
 rom your index file and upgrade to the latest version of the SDK, if
 you haven't
  already.
 --- end server output ---

 And the index isn't created.

 I think the property named id by me was conflict with something, and
 cause the index creating failed.

 I want to know how to create an index for my property id.
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: can not force delete a index with error!

2009-07-20 Thread Ramesh Thiruchelvam

Hi Jeff,

I wasn't able to delete the Error status index for a day, the next
day when I tried vacuum_indexes it got deleted without any problem.

The fist day I tried many times, but the index status was Error it
didn't change to Deleting It was kind of stuck at the error
status.

Kr,
Ramesh

On Jul 21, 6:06 am, Jeff S (Google) j...@google.com wrote:
 Hi Ramesh,

 It looks like the errored indices have been deleted. Index deletion can
 sometimes take a little while (minutes to possibly hours but this is rare).
 Please let me know if the indices that you wanted to remove are still there.

 Thank you,

 Jeff

 On Fri, Jul 17, 2009 at 10:08 AM, Ramesh Thiruchelvam 

 ramesh.thiruchel...@gmail.com wrote:

  I've the sample problem, my app id is sri-lankan, and my index City is
  having the problem.

  I tried appcfg.py vacuum_indexes many times but it didn't work.

  Please help me.

  Kr,
  Ramesh

  On Jul 13, 7:38 pm, jb j.b...@gmx.de wrote:
   Hello,

   all myindexare stuck at error for some days now. I tried to
   vacuum_indexes and update_indexes but nothing happend.  Could anyone
   from google take a look at my indexes?  My app id is iferienhaus.

   Thanks.

   On Jul 1, 12:13 am, Jeff S (Google) j...@google.com wrote:

Hello hu,

I think the issues with adobeman's app have been addressed. What is
  your app
ID? I'll take a look.

Thank you,

Jeff

On Tue, Jun 30, 2009 at 2:32 AM, hu itswa...@gmail.com wrote:

 i got this problem too,and hope be resolved

 On Jun 29, 12:13 pm, adobeman xil...@gmail.com wrote:
  I have someindexshowing as error , and tried

  appcfg.py vacuum_indexes My_application/

  appcfg.py update_indexes My_application/

  but after Ideletetheindexby command line, theindexstill shows up
  in the admin page.

  Anyone have idea how to effectively clear all the indexs, so I can
  try
  to rebuild the indexes  for my application?- Hide quoted text -

- Show quoted text -
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---