Questions tagged [google-app-engine-patch]
9 questions
8
votes
2 answers
How do I tell why Django is ignoring the Accept-Language header?
I have a Django app (on Google App Engine) that I wish to internationalize.
settings.py:
USE_I18N = True
LANGUAGE_CODE = 'en'
# Restrict supported languages (and JS media generation)
LANGUAGES = (
('en', 'English'),
('fr',…

dfrankow
- 20,191
- 41
- 152
- 214
4
votes
3 answers
Google App engine(Python) "No module named webob"
Recently I just updated my GAE SDK version to 1.6.4, while am trying to start my server, Its throwing "No module named webob" & getting exit.
Note: Am using python2.5
Is there any external patch or stuff needed here to resolved this issue?
If…

Niks Jain
- 1,617
- 5
- 27
- 53
2
votes
5 answers
Django instance start under Google App Engine
After thinking quite a while about how to make a fast and scalable web application, I am almost decided to go for a combination of Google App Engine, Python+Django, and app-engine-patch. But I came across a comment in the app-engine-patch FAQ that…

cpicada
- 123
- 5
1
vote
3 answers
How do I send email from Google App Engine with a random sender?
How do I send email from Google App Engine with a random, non-app admin sender using a custom domain name (e.g. xyz@myshop.com ) ? We need to allow the users of our website to communicate with each other through a custom made messaging system but…

themihai
- 7,903
- 11
- 39
- 61
1
vote
1 answer
Running XG Transactions in GAE Python
I'm trying to compose automated local unit testing for my app engine application, running on python.
It seems that whenever I'm trying to make a call for a transaction which is cross group ((XG=true)), the transaction simply doesn't work and the…

Lior Z
- 668
- 1
- 9
- 21
0
votes
1 answer
Google App Engine app.yaml file for PHP app (Magenta App)
I am working on this app.yaml file to put Magento app on GAE. I have read most replies related to app.yaml files. Here is one for wordpress app. However, I feel very confused with so many different…

eGlobeBiz
- 87
- 1
- 10
0
votes
1 answer
manage.py syncdb on windows for Google App Engine Patch does not work
I have installed Google App Engine patch and I get the following error when I want to sync the DB
Command on command prompt on windows
manage.py syncdb
The Google App Engine SDK could not be found!Visit http://code.google.com/p/app-engine- …

dhaval
- 2,368
- 9
- 35
- 60
0
votes
0 answers
Error accessing dashboard or admin interface in Google App Engine
I am unable to access dashboard/admin interface of Google app engine on local development environment which could be access using localhost:8000/_ah/admin/.
It throws following error:
Traceback (most recent call last):
File "C:\Program…

VGNU
- 67
- 7
0
votes
3 answers
Trying to change Appengine JAVA SDK in Eclipse
I've upgraded the Eclipse pluging to 3.7 and the JAVA SDK to 1.6.6. I've noticed some problems, so I'm trying to go back to 1.6.5 but the Eclipse plugin always copy 1.6.6 jars to WEB-INF.
What I have to do to force the Plugin to change to…