My application works perfectly on my local server. I uploaded the
application to Google.com, but the application is not working. The
data is not being saved in the Datastore. It is the same code. The
sample code below should save the data, but my Datastore is not
updated on
appspot.com. Any ideas?
Example Code:
a = "1"
b= "2"
d = c(foo=a, bar=b)
db.put(d)
class c(db.Model):
foo = db.TextProperty()
bar = db.TextProperty()