[google-appengine] Re: I messed up my Google Account used for GAE

2009-06-04 Thread Herbert Groot Jebbink

On May 29, 11:00 pm, "Jeff S (Google)"  wrote:

> Is the email account you are using associated with Google Apps? If so,
> you'll need to sign in to the App Engine admin console at
> appengine.google.com/a/ .

oops, forget about that, sorry.

hgj


> On Thu, May 28, 2009 at 5:48 AM, Herbert Groot Jebbink <
>
> h.groot.jebb...@infoprofs.nl> wrote:
>
> > Dear Google App Engine support :-)
>
> > I messed up my Google Account that I used for GAE. Deleted it and
> > connected it to an other gmail/google account as an secondary email
> > addres.
>
> > - After log-in in GAE, it knows me as an existing GAE account (it does
> > not ask for a phone number to send a SMS)
> > - But I don't see my old applications.
> > - There is an button "Create application" but it does'nt work, (maybe
> > it works, but the next page is again this Create Application page, I
> > do not get the the "My Applications"  page.
> > - The app itself is still running.
>
> > I have removed it from the other google/gmail account and created it
> > again as a stand-alone Google account, but that did not solve the
> > problem.
>
> > GAE app: infoprofsspeeltuin
> > Google Account: (the one I  use for this posting)
>
> > Kind regards, Herbert
--~--~-~--~~~---~--~~
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] I messed up my Google Account used for GAE

2009-05-28 Thread Herbert Groot Jebbink

Dear Google App Engine support :-)

I messed up my Google Account that I used for GAE. Deleted it and
connected it to an other gmail/google account as an secondary email
addres.

- After log-in in GAE, it knows me as an existing GAE account (it does
not ask for a phone number to send a SMS)
- But I don't see my old applications.
- There is an button "Create application" but it does'nt work, (maybe
it works, but the next page is again this Create Application page, I
do not get the the "My Applications"  page.
- The app itself is still running.

I have removed it from the other google/gmail account and created it
again as a stand-alone Google account, but that did not solve the
problem.

GAE app: infoprofsspeeltuin
Google Account: (the one I  use for this posting)

Kind regards, Herbert

--~--~-~--~~~---~--~~
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: PHP, Datastore, JDO

2009-05-19 Thread Herbert Groot Jebbink

On May 19, 4:47 am, fillano  wrote:

> Try to replace the quercus.jar+resin-util.jar+jetty solution with
> resin.jar, and replace QuercusServlet with GoogleQuercusServlet.(It's
> in resin-4.0.0 package.) There's some problems with previous one as I
> testing the php from the following url:
>
> http://blog.caucho.com/?p=187

Indeed, deleting & updating with JDO from PHP is working now, thanks
for the tip.

Kind Regards, Herbert
--~--~-~--~~~---~--~~
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] PHP, Datastore, JDO

2009-05-18 Thread Herbert Groot Jebbink

Hi,

Folowing below pages I can now store en retrieve data into the
Datastore with PHP.

http://brian.brispace.net/2009/04/09/php-on-google-app-engine/
http://www.fistagon.us/wp/?p=16

however I have problems with update and delete, for example, below
atempt to delete a object gives a 500
java.lang.UnsupportedOperationException

$id = 14;

import phptest.test;
import phptest.PMF;

$p = PMF::get();
$pm = $p->getPersistenceManager();
$q = $pm->newQuery("select from phptest.test where id == $id");
$results = $q->execute();

echo $results[0]->getId() . ” - ” . $results[0]->getFirstName() . ”;

$pm->deletePersistent($results[0]);

$pm->close();

are there somewhere update / delete examples?

Kind Regards, Herbert

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---