Django projemi GAE'ye dağıtmaya çalışıyorum. Appcfg.py kullanarak konuşlandırdıktan sonra GAE içinde bu hatayı alıyorum. Bu sorunu nasıl çözecek bilen var mı?Google App Engine projesinde django.middleware sınıflarını nasıl içe aktarmalıyım?
Traceback (most recent call last):
File "/base/python27_runtime/python27_lib/versions/1/google/appengine/runtime
/wsgi.py", line 223, in Handle
result = handler(dict(self._environ), self._StartResponse)
File "/base/python27_runtime/python27_lib/versions/third_party/django-1.4/django
/core/handlers/wsgi.py", line 219, in __call__
self.load_middleware()
File "/base/python27_runtime/python27_lib/versions/third_party/django-1.4/django
/core/handlers/base.py", line 47, in load_middleware
raise exceptions.ImproperlyConfigured('Error importing middleware %s: "%s"' %
(mw_module, e))
ImproperlyConfigured: Error importing middleware django.middleware.cache: "No module
named memcache"
sonraki kod katman sınıfları benim project.settings ithal edilen gösterir: Bu sorunla ilgilendiğiniz için
from djangoappengine.settings_base import *
....
MIDDLEWARE_CLASSES = (
'django.middleware.cache.UpdateCacheMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.cache.FetchFromCacheMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
)
teşekkür ederiz.
'python 3 için python3-memcached'i kurun. –
@AnkitPopli Komut python setup.py egg_info hata kodu 1/tmp/pip_build_root/python3-memcached ile başarısız oldu –