Hi, I got Error 500 on Google App Engine out nothing.
http://oladic.appspot.com/ - this got error.
The same code runs flawlessly at: http://blogthere.appspot.com/ and http://912.latest.oladic.appspot.com/
How could this be?
Hi, I got Error 500 on Google App Engine out nothing.
http://oladic.appspot.com/ - this got error.
The same code runs flawlessly at: http://blogthere.appspot.com/ and http://912.latest.oladic.appspot.com/
How could this be?
App Engine appears to be borked this morning, lots of people are having this problem on the mailing list as well.
You can see the System Status and check if the error was when the system had problems
This issue has been resolved. The post on the downtime-notify list is here:
The update on the system status page is here:
In my case, the problem appeared when I decided to deploy the application. After inquire for a while, I figured out that the problem was being caused due the imports of simplejson (in MacOS) or json (in Windows).
The solution to this, is to import the libraries from django. In my case I did:
from django.utils import simplejson
I hope this solution will work for you.