Hello Vinny, There is already runtime Exception handling. There are no exceptions thrown but an Server error is generated. This usually indicates some php configuration is preventing the framework from completing its execution.
Since PHP in appengine is still in experimental state, I would suggest to have more verbose error reporting to troubleshoot issues like this. Is anyone at Google/AppEngine team watching this list, or should I be reporting this issue to the google code project? On Wed, Jun 19, 2013 at 4:43 AM, Vinny P <[email protected]> wrote: > Hello Jeffery, > > On Tuesday, June 18, 2013 5:55:24 AM UTC-5, Jeffery Fernandez wrote: > >> I also narrowed the problem to the addAction() method in >> AlbumController.php (see above link). If I comment out the following line: >> >> >> return array('form' => $form); >> >> >> the problem disappears. Initially I was thinking it was a framework level >> problem. But this error does not happen in my local development. So I am >> thinking it is more of a configuration problem. >> >> > If this error doesn't occur in your local dev server, but does occur in > production, most likely there is a file or files missing from the upload. > > On Tuesday, June 18, 2013 5:55:24 AM UTC-5, Jeffery Fernandez wrote: > >> Is it possible to get more information that this? >> >> >> > Yes there is: use PHP's try/catch statement > http://php.net/manual/en/language.exceptions.php . Put a try clause > around the return statement (and the code above it, for that matter). If > there is any exception coming from that code, the try clause will capture > it, and then you can print the exception out into logging. > > > ----------------- > -Vinny P > Technology & Media Advisor > Chicago, IL > > App Engine Code Samples: http://www.learntogoogleit.com > > > > -- > 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 [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/google-appengine. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- Mobile: +61 430 534 464 Home: +61 3 9764 4439 Work: +61 3 9723 9399 -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
