This seems like it should be fairly simple, but I have noticed that every time django is involved with app engine odd errors occur, so today's one is:
In an attempt to make automated backups I followed the instructions from https://developers.google.com/appengine/articles/scheduled_backups and https://developers.google.com/appengine/docs/adminconsole/datastoreadmin To test the setup I run /_ah/datastore_admin/backup.create?name=BackupToBlobstore&kind=Instance&kind=Player&kind=Stats&filesystem=blobstore against my server Unfortunately all I get is the following in my logs: 216.19.176.175 - - [24/Jul/2012:15:47:53 -0700] "GET*/_ah/datastore_admin/backup.create?name=BackupToBlobstore&kind=Instance&kind=Player&kind=Stats&filesystem=blobstore * HTTP/1.1" 500 0 - "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11" "blah.appspot.com" ms=1518 cpu_ms=476 api_cpu_ms=0 cpm_usd=0.013457 loading_request=1 instance=00c61b117cf44526852b160e42e4bffdd2bece5e E 2012-07-24 15:47:53.718 Traceback (most recent call last): File "/base/python27_runtime/python27_lib/versions/1/google/appengine/runtime/wsgi.py", line 193, in Handle result = handler(dict(self._environ), self._StartResponse) File "/base/data/home/apps/s~dontstarve-dev/2.360554464082078547/gaesessions/__init__.py", line 466, in __call__ return self.app(environ, my_start_response) File "/base/python27_runtime/python27_lib/versions/third_party/django-1.3/django/core/handlers/wsgi.py", line 250, in __call__ self.load_middleware() File "/base/python27_runtime/python27_lib/versions/third_party/django-1.3/django/core/handlers/base.py", line 39, in load_middleware for middleware_path in settings.MIDDLEWARE_CLASSES: File "/base/python27_runtime/python27_lib/versions/third_party/django-1.3/django/utils/functional.py", line 276, in __getattr__ self._setup() File "/base/python27_runtime/python27_lib/versions/third_party/django-1.3/django/conf/__init__.py", line 42, in _setup self._wrapped = Settings(settings_module) File "/base/python27_runtime/python27_lib/versions/third_party/django-1.3/django/conf/__init__.py", line 89, in __init__ raise ImportError("Could not import settings '%s' (Is it on sys.path?): %s" % (self.SETTINGS_MODULE, e)) ImportError: Could not import settings 'settings' (Is it on sys.path?): *No module named settings* * * * * I found someone else with a similar problem, but their post had been removed: https://groups.google.com/d/topic/google-appengine-stackoverflow/Rk8K_EX7oho/discussion any ideas would be appreciated. Cheers, A. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/9bjDllD--1AJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
