[google-appengine] Re: Creating this instance is permanently failing. Try redeploying the version to fix it.

2015-11-08 Thread Philippe David
Hi Adams, I cannot delete the default version. Pushing a new version will just pump the number of GAE vm & CE vm running / restarting / failing. On Saturday, November 7, 2015 at 5:36:51 PM UTC-5, Adam wrote: > > Hi Philippe, > > If you want to get rid of any previous versions

Re: [google-appengine] no authorization window in youtube

2015-05-15 Thread philippe pithon
I had forgotten that Google had bought youtube ... thank you for your reply -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [google-appengine] Custom domain slow ?

2015-05-15 Thread philippe pithon
it works well this morning! I don't understand ... weird ... I will test next time with https://developer.chrome.com/devtools/docs/network Thank you! my web : www.monsavoir.com my id : http://myhistorydata.appspot.com/ -- You received this message because you are subscribed to the Google

[google-appengine] official informations website

2015-05-15 Thread philippe pithon
hi, what the official appengine website for the latest information: new version, new apis, etc ... - Google forum? - Stack Overflow forum? (why there are 2 forums ???) - Others? -- You received this message because you are subscribed to the Google Groups Google App Engine group. To

[google-appengine] Custom domain slow ?

2015-05-14 Thread philippe pithon
Hi, My custom domain (two years) is very slow for a few weeks : 10s and my id.appspot.com is ok : 1s ideas -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group and stop receiving emails from it, send an

[google-appengine] no authorization window in youtube

2015-05-14 Thread philippe pithon
Hello everyone, I use oauth2/Appengine in my application, if I am already logged (user google) : I have the permission screen google when I log my appengine application. BUT, when I log to youtube, there is no authorization window google... the connection is automatic why ??? Les

Re: [google-appengine] Google Drive

2014-10-30 Thread philippe pithon
My problem is the following: for each entity in the datastore, I store the user key id with : Users API If I switch login with Drive API, my application can't find user entities because user iD will be different .. Idea ? -- You received this message because you are subscribed to the

Re: [google-appengine] Google Drive

2014-10-29 Thread philippe pithon
Question... id user is different between Users API and Drive API User API : User user = userService.getCurrentUser(); String id = user.getUserId(); Drive API : Userinfoplus about = service.userinfo().get().execute(); String id = about.getId(); normal or not ? -- You received this message

Re: [google-appengine] Google Drive

2014-10-22 Thread philippe pithon
For Generates a consent page url : - Users API / link start with : https://accounts.google.com/ServiceLogin?service=*ah* there is a link to create accounts google - Drive Client API / link start with : https://accounts.google.com/ServiceLogin?service=*lso* no link to create accounts

Re: [google-appengine] Google Drive

2014-10-21 Thread philippe pithon
- on Google page connection, there is no link to create accounts google Philippe Pithon -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine

Re: [google-appengine] Google Drive

2014-10-20 Thread philippe pithon
Hi, I use now CredentialManager for upload file to Drive... and it works But when I want to access EMF.get().createEntityManager() - Could not initialize class therefore if I want to use in same program EntityManager (DAO) + upload to Drive, I must have 2 urls login : -

Re: [google-appengine] Google Drive

2014-09-25 Thread philippe pithon
I try example DrEdit and I don't understand... I Have already a session Google with this url userService : userService.createLoginURL(.) and in example DrEdit, I must have Credential with this url for Drive : /** * Generates a consent page url. * * @return A consent page url string

[google-appengine] Google Drive

2014-09-22 Thread philippe pithon
Hi! I use UserService for Google session : UserService userService = UserServiceFactory.getUserService(); Now I want servlet upload to Google Drive... Where can I find an example ? Philippe -- You received this message because you are subscribed to the Google Groups Google App Engine group

[appengine-java] Re: App engine SDK jars in WEB-INF/lib. Why???

2011-05-16 Thread Philippe Marschall
applications instead of waiting for full releases. I don't see how you can evolve and API is affected by which classloader provides it. Cheers Philippe -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email

[appengine-java] Re: App engine SDK jars in WEB-INF/lib. Why???

2011-05-15 Thread Philippe Marschall
On May 13, 2:29 am, Nichole nichole.k...@gmail.com wrote: Just a quick summary, the servlet spec requires that a servlet container such as appengine provider an implementation for a service.  Those jars such as servlet- api-2.4.jar are needed at compile time. That's why there's provided

[google-appengine] Re: How to upload date/time csv data in google app engine with bulkloader tool ?

2011-03-29 Thread Philippe REGALL
Thanks for your remark about date/time format. It helped ! Philippe R -- 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

[google-appengine] Re: How to upload date/time csv data in google app engine with bulkloader tool ?

2011-03-29 Thread Philippe REGALL
) import_transform: lambda x:datetime.datetime.strptime(x.split(.)[0], %Y-%m-%d %H:%M:%S) = I got an error about split function. Philippe R -- 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

[appengine-java] Re: Disable Eclipse DataNucleus Enhancer from maven-eclipse-plugin?

2011-03-25 Thread Philippe Beaudoin
There is no maven-datanucleus-plugin in my POM. The datanucleus is brought in by the Google Eclipse Plugin I believe. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to

[google-appengine] How to upload date/time csv data in google app engine with bulkloader tool ?

2011-03-24 Thread Philippe REGALL
if it is an auto generated date/time when uploading. Many thanks in advance. Philippe R -- 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

[appengine-java] Disable Eclipse DataNucleus Enhancer from maven-eclipse-plugin?

2011-03-23 Thread Philippe Beaudoin
Hi! My project uses Objectify and therefore does not need the DataNucleus Enhancer to run. Running it is long and causes some nasty error popups in Eclipse. I usually disable it via: Right click on project Properties Builders Where I uncheck Enhancer. However, my project uses Maven and the

[appengine-java] Eclipse Run As Web Application overwrites all the libs

2011-03-20 Thread Philippe Beaudoin
I'm using maven with m2eclipse and want to use to nice debugging tools by running my app directly from Eclipse via the Run As Web Application command. This used to work well, but recently I've discovered that all the external dependencies in target/MyProject/WEB-INF/lib are deleted every time

[appengine-java] Re: Eclipse Run As Web Application overwrites all the libs

2011-03-20 Thread Philippe Beaudoin
I found a workaround by disabling and reenabling Maven dependency injection in Eclipse: Right-click on the project Maven Disable Dependency Management Right-click on the project Maven Enable Dependency Management I still think there may be something wrong with the GEP though... -- You

Re: [google-appengine] Channel API encoding problem

2011-03-04 Thread Philippe Beaudoin
If you use unicode characters in an hardcoded string, I believe you have to make sure the file is stored in the right format. Right-click the file, then: Properties Resources -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to

Re: [google-appengine] Channel API encoding problem

2011-03-04 Thread Philippe Beaudoin
If you use unicode characters in an hardcoded string, I believe you have to make sure the file is stored in the right format. Right-click the file, then: Properties Resources Text file encoding Other UTF-8 -- You received this message because you are subscribed to the Google Groups Google

Re: [appengine-java] Re: URLFetchService

2011-02-28 Thread Philippe Beaudoin
You're very welcome! This community is great, and so is Google (although I don't work for them. ;)) Cheers, Philippe On Mon, Feb 28, 2011 at 7:55 AM, cyberalgo rythms cyberalgoryt...@gmail.com wrote: Hello again: I just want to thank you again for the super help! I am now able to remote

Re: [appengine-java] Re: URLFetchService

2011-02-25 Thread Philippe Beaudoin
I don't know about that... Have you tried checking the URL accessed when you manually fill the form and click submit? Cheers, Philippe On Fri, Feb 25, 2011 at 9:30 AM, cyberalgo rythms cyberalgoryt...@gmail.com wrote: Thank you for the super help. It is first time I using this interface. I

[appengine-java] Re: URLFetchService

2011-02-24 Thread Philippe Beaudoin
it helps, Philippe -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java@googlegroups.com. To unsubscribe from this group, send email to google-appengine-java+unsubscr

Re: RE: [google-appengine] love letter to appengine team (see attached)

2011-02-17 Thread Philippe Beaudoin
+1 I love working with AppEngine -- the design choices are sensible, the speed is great (esp. with the latest additions), and it's dirt cheap. Thanks!!! -- 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: Bulkloading CSV data to app engine datastore

2011-02-05 Thread Philippe REGALL
? Sorry for this basic questions and many thanks in advance. Philippe -- 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

[google-appengine] Re: Bulkloading CSV data to app engine datastore

2011-02-05 Thread Philippe REGALL
the generated file bulkloader.yaml ? I don't have a framework like Django - should I install one ? Sorry for this basic questions and many thanks in advance. Philippe -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email

[google-appengine] Bulkloading CSV data to app engine datastore

2011-01-31 Thread Philippe REGALL
blocked at this point of my development). Philippe REGALL -- 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

[appengine-java] Re: HtmlUnit support on GAE for GWT crawlability

2010-12-08 Thread Philippe Beaudoin
Hi Brucko, Great idea! Can you post a link to your blog, I can't see it here? Philippe On Dec 7, 3:26 pm, brucko geoff.bruck...@gmail.com wrote: Always On has made an interesting twist. If you want this to work for free, then ATM Gal Dolbers method appears to be the best at this stage

[google-appengine] Re: Let's defend GAE!

2010-11-22 Thread Philippe Beaudoin
there: http://corp.bookedin.net/ Cheers, Philippe -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine

Re: [google-appengine] Re: How to integrate Payment module with google app engine

2010-11-19 Thread Philippe Beaudoin
By all means, go ahead. Don't hesitate to put them in touch with me if needed. Philippe On Fri, Nov 19, 2010 at 11:35 AM, Ikai Lan (Google) ikai.l+gro...@google.com wrote: Would you mind if I passed this feedback along to their team? Paypal has been pretty helpful to us in the past when

[google-appengine] Re: How to integrate Payment module with google app engine

2010-11-16 Thread Philippe Beaudoin
to know about them. This in turn can lead to double billing. Were you guys able to solve that problem elegantly? (My solutions are a bit hacky.) Cheers, Philippe -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send

[appengine-java] Extend UrlFetch timeout on development server?

2010-11-04 Thread Philippe Beaudoin
I'm trying to use the UrlFetch API to test my Paypal integration on the development server. When I send a badly formatted request I quickly get an error reponse from Paypal's sandbox server. However, as soon as I issue a valid request, it takes too long to process and I get a timeout error. I

[google-appengine] Re: Cron job ran twice today

2010-10-25 Thread Colbert Philippe
Possible solution: Read the documentation on Quartz and somewhere they explain certain situation that can cause Cron expressions to be executed twice. If I remember correctly, when your Cron expression is fired too close to midnight and/or when you mix issues ot timezones Check it out! You

[appengine-java] Re: Google Plugin for Eclipse 3.6 is now available

2010-06-28 Thread Philippe Marschall
On Jun 28, 4:10 pm, Jason Parekh jasonpar...@gmail.com wrote: On Fri, Jun 25, 2010 at 1:01 AM, Philippe Marschall philippe.marsch...@gmail.com wrote: On Jun 23, 11:14 pm, Jason Parekh jasonpar...@gmail.com wrote: Hey folks, Google Plugin for Eclipse 1.3.3 is out with support

[appengine-java] Re: Google Plugin for Eclipse 3.6 is now available

2010-06-24 Thread Philippe Marschall
to create a plugin that runs on multiple versions. What's the reason why you need to do this? Cheers Philippe -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-j...@googlegroups.com

[appengine-java] Re: What Framework to use?

2010-05-24 Thread Philippe Marschall
, JQuery and JAX-RS handlers or servlets. Performance is stellar now. It's a small application though. Cheers Philippe -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-j

[appengine-java] Re: Google Plugin for Eclipse 1.3 plans

2010-02-06 Thread Philippe Marschall
, preferably Maven central. [1] http://maven.apache.org/eclipse-plugin.html [2] http://m2eclipse.sonatype.org/ Cheers Philippe -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-j

[appengine-java] Re: RESTfull - JAX-RS and GAE/J

2010-01-18 Thread Philippe Marschall
if you have to write half a dozen of excludes if you use resteasy in production as long that that saves you two dependencies when posting a snippet in a blog. Cheers Philippe -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post

[appengine-java] Re: GAE roadmap for 2010

2009-12-27 Thread Philippe Marschall
Philippe -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-j...@googlegroups.com. To unsubscribe from this group, send email to google-appengine-java+unsubscr...@googlegroups.com

[appengine-java] Re: eclipse plugin and maven?

2009-12-12 Thread Philippe Marschall
) doesn't seem a priority. Cheers Philippe -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-j...@googlegroups.com. To unsubscribe from this group, send email to google-appengine

[appengine-java] Re: Logging in JUnit tests

2009-12-12 Thread Philippe Marschall
/resources and you're set. For JUL configuring argLine in the surefire plugin might be an option. You could also put a MethodRule or some setup method an abstract super class for all tests that set up JUL. Cheers Philippe -- You received this message because you are subscribed to the Google Groups

[appengine-java] Re: Java heap size

2009-12-03 Thread Philippe Marschall
affect the size? Doesn't look like it. Cheers Philippe -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-j...@googlegroups.com. To unsubscribe from this group, send email to google

[appengine-java] Re: How to return a file from a servlet

2009-12-01 Thread Philippe Marschall
? Do a forward? RequestDispatcher dispatcher = request.getRequestDispatcher (whereEver); dispatcher.forward(request, response); Cheers Philippe -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email

[appengine-java] Re: Unit testing 2nd class citizen?

2009-11-22 Thread Philippe Marschall
the other test dependencies. You can use the same solution you use there like for example test scoped Maven dependencies. Cheers Philippe -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google

[appengine-java] Re: java doubt : is there any way to get class instance from class' qualified name?

2009-11-08 Thread Philippe Marschall
() although shorter it propagates any exception thrown by the constructor, including checked ones. You don't want this. Cheers Philippe --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine for Java group

[appengine-java] Re: Memory Limit

2009-10-19 Thread Philippe Marschall
to specify this limit for the production deployment ? No. You might find some reverseengineered information about the limits here: http://kohlerm.blogspot.com/2009/04/some-facts-about-java-used-by-googles.html Cheers Philippe --~--~-~--~~~---~--~~ You received

[google-appengine] Re: Datastore query performance

2009-09-01 Thread Philippe
hello Nick, Why do you advice using ArrayProperty instead of db.ListProperty (float, indexed=False) with the indexed=False, it should behave the same way, no ? Philippe On Sep 1, 11:48 am, Nick Johnson (Google) nick.john...@google.com wrote: Hi John, You might also want to look

[google-appengine] Re: Datastore query performance

2009-09-01 Thread Philippe
thank you Nick. I will then also use ArrayProperty in my Models ! I really thought that I could use ListProperty with indexed=False, just as a quick and cheap list. On Sep 1, 1:56 pm, Nick Johnson (Google) nick.john...@google.com wrote: Hi Philippe, On Tue, Sep 1, 2009 at 12:43 PM, Philippe

[appengine-java] Re: What are your opinion ?

2009-08-27 Thread Philippe Marschall
many of the issues. It's not so low-level actually, it's more or less like dealing with java.util.Map. However my applications are all very simple. Cheers Philippe --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google

[google-appengine] Re: Datastore DB Design

2009-08-26 Thread Philippe
Philippe, On average around 30. Thanks, Gary On Aug 26, 3:43 pm, Philippe philippe.cr...@gmail.com wrote: 1 more question: how many keywords do you have usually for one reccord ? On Aug 26, 2:44 am, Gary gbre...@gmail.com wrote: Thanks for your help Philippe, So does anyone have

[google-appengine] Re: Datastore DB Design

2009-08-26 Thread Philippe
. I suspect your tests have returned more results when you had more entries (because there were more matches, and you were asking for them all)? -Nick Johnson On Wed, Aug 26, 2009 at 1:44 AM, Gary gbre...@gmail.com wrote: Thanks for your help Philippe, So does anyone have an idea of how

[google-appengine] Re: Datastore DB Design

2009-08-26 Thread Philippe
thanks for the clarification On Aug 26, 11:44 am, Nick Johnson (Google) nick.john...@google.com wrote: On Wed, Aug 26, 2009 at 10:28 AM, Philippe philippe.cr...@gmail.com wrote: Nick, what about list deserialisation ? no impact on large data set with 30 elements list ? There's a per

[appengine-java] Accept-Encoding doesn't seem to get passed to the application

2009-08-25 Thread Philippe Marschall
the only headers I see are User-Agent, Host and Cookie. Cheers Philippe --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java

[appengine-java] Re: Request to update jars in http://google-maven-repository.googlecode.com

2009-08-25 Thread Philippe Marschall
On Aug 25, 6:37 pm, David david.yu@gmail.com wrote: Hi, 1.2.2 had been released more than a month ago but was not uploaded on the repository. The latest in there is 1.2.1 +1 --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[appengine-java] Re: Accept-Encoding doesn't seem to get passed to the application

2009-08-25 Thread Philippe Marschall
Philippe --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java@googlegroups.com To unsubscribe from this group, send email to google

[google-appengine] Re: Datastore DB Design

2009-08-25 Thread Philippe
another option could be: Record(db.Model): value = db.StringProperty() Keyword(db.Model): value = db.StringProperty() #this value is not necessary, but I do not know if you can have a Model without properties the idea is that for one Record, you input several keywords has record

[google-appengine] Re: Datastore DB Design

2009-08-25 Thread Philippe
as part of the key so data gets converted to a string such as gZid29zZW1yGQsSBkRvbWFpbiINYnVpbHR3aXRoLmNvbQw as a key value. Gary On Aug 25, 9:18 pm, Philippe philippe.cr...@gmail.com wrote: another option could be: Record(db.Model):     value = db.StringProperty() Keyword(db.Model

[google-appengine] Re: Datastore DB Design

2009-08-25 Thread Philippe
1 more question: how many keywords do you have usually for one reccord ? On Aug 26, 2:44 am, Gary gbre...@gmail.com wrote: Thanks for your help Philippe, So does anyone have an idea of how to store this data in a scalable manner? I was sure Woobles first answer was going to be the fix

[appengine-java] Re: Logging Levels....

2009-08-24 Thread Philippe Marschall
and give them a different level which doesn't exist. Cheers Philippe --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java

[appengine-java] Re: Maven

2009-08-23 Thread Philippe Marschall
. The reality couldn't possibly be the further from this. [1] http://code.google.com/appengine/docs/java/howto/unittesting.html Cheers Philippe --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine

[google-appengine] Re: Relation indexing using a single list property - proposal

2009-08-21 Thread Philippe
it with a new one, instead of fetching it first (I may be wrong here). The only caveat is that when you generate a new unique suffix for the new entry (which overwrites the previous one), the record might 'jump' in the UI, ie in a Grid that is currently paged through. On Aug 20, 6:59 pm, Philippe

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

2009-08-21 Thread Philippe
here : http://code.google.com/appengine/docs/python/datastore/queriesandindexes.html#Restrictions_on_Queries check : Properties In Inequality Filters Must Be Sorted Before Other Sort Orders I think that you should do search_query.filter(cost , min_price) search_query.filter(cost , max_price)

[google-appengine] Re: Relation indexing using a single list property - proposal

2009-08-20 Thread Philippe
looks interesting, but I do not understand all. how do you get back to your data (if I understood, you query on specific kinds that are your pre-filtered value). Do you get your data using ancestor ? If you have time to give a short example, it will be great ! thank you, Philippe On Aug 20, 3

[google-appengine] Re: Tasks queue to accomplish this?

2009-08-18 Thread Philippe
you can run 10 tasks / second you can proceed more than one user / task On Aug 17, 11:38 pm, Sam Afifi afi...@gmail.com wrote: (first post didn't go through) Hypothetical app .. Let's say I have 10,000 users and I need an application that queries every minute, a service they all subscribe

[google-appengine] Re: Task Queues

2009-08-16 Thread Philippe
http://code.google.com/p/googleappengine/issues/list you can star some issues on taskQueue. it's still in the lab of appengine team. On Aug 17, 12:21 am, Sebastian Aviña sebastianav...@gmail.com wrote: Hi, I'm running some task queues on my app hola-dgo, right now I  have exceded the Total

[google-appengine] Re: App Engine serving all pages as html -

2009-08-09 Thread Philippe
I am not sure that your sitemap use the correct format. use a tool like this : http://www.xml-sitemaps.com/ or build yourself using the specification here http://en.wikipedia.org/wiki/Google_Sitemaps On Aug 8, 5:56 pm, John_Idol giovanni.id...@gmail.com wrote: I have a very simple txt sitemap

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

2009-07-24 Thread Philippe
in the quotadetails) Today (after 24hours reset), no more messages, everything green, but still appcfg.py update get a 403 error. I hope AppEngine team can solve that. Philippe On Jul 22, 12:53 am, Jeremy Truax trup...@gmail.com wrote: The issue for this is here:http://code.google.com/p

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

2009-07-24 Thread Philippe
this time, I could solve doing: 1- change the default version from http://appengine.google.com/deployment?app_id= I had 2 version (I always use n°1, so i switched to n°2) 2- upload the version I wanted tu upload (n°1) it worked :) 3- change the default back to n°1 On Jul 24, 9:27 am, Philippe

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

2009-06-15 Thread Philippe
great ! working now. thank you. Can you tell me what I did wrong ? If possible, I would like to avoid getting again in that situation. On Jun 14, 9:02 am, Philippe philippe.cr...@gmail.com wrote: after today's reset, not better. It was my last hope ! here is my app ID : dicoillico I hope

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

2009-06-14 Thread Philippe
change the version of my app before uploading. I have another app on that account that i can upload normaly for both, I bought a .com On Jun 13, 9:42 pm, Philippe philippe.cr...@gmail.com wrote: message changed. getting shorter in a way: I now got an error 500 Scanning files on local disk

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

2009-06-14 Thread Philippe
after today's reset, not better. It was my last hope ! here is my app ID : dicoillico I hope someone at google can help me finding what is wrong. On Jun 14, 8:00 am, Philippe philippe.cr...@gmail.com wrote: if it helps to solve my problem. On the dashboard of my app, I get that message : Your

[google-appengine] Too Many Versions (403)

2009-06-13 Thread Philippe
Hi, I got this error for 1 hours now : Too Many Versions (403) My quota stuff is green. I have only 1 version of my app. I tried making a new version, but it did not upload anything. I hope someone can help. here is the full error message: Deploying new version. 2009-06-13 08:44:11,328 ERROR

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

2009-06-13 Thread Philippe
I tried to delete my version. but appEngine refuse because I have only one. sad... I also tried to delete .appcfg_cookies and .appcfg_nag not better .. On Jun 13, 9:32 am, Philippe philippe.cr...@gmail.com wrote: little mistake. it was not working for 10 hours (not just 1 hour) On Jun 13, 9

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

2009-06-13 Thread Philippe
(makes me think that something wasn't cleaned up properly on their end. On Jun 13, 5:41 am, Philippe philippe.cr...@gmail.com wrote: I tried to delete my version. but appEngine refuse because I have only one. sad... I also tried to delete .appcfg_cookies and .appcfg_nag not better

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

2009-06-13 Thread Philippe
no : 22 of 250 and so far, I never riched the 250. On Jun 13, 1:30 pm, Tony fatd...@gmail.com wrote: On your Quota Details page, are you maxed out on your Total Deployments (down at the bottom)? On Jun 13, 6:39 am, Philippe philippe.cr...@gmail.com wrote: thank you for helping

[google-appengine] Re: Cron jobs not running

2009-06-11 Thread Philippe
only 2 persons reported that issue. then, I will be the 3rd one .. Last time a cron job worked for me was : 06-11 12:16AM I hope someone at google can solve it, starts to be long :/ On Jun 11, 5:39 pm, vivpuri vivpu...@gmail.com wrote: Can someone from Google shed some light on this issue. None