<class 'django.core.exceptions.ImproperlyConfigured'>
Python 2.5.2: /home/adamkuert/opt/bin/python
Fri Jul 3 21:58:50 2009

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /home/.jastrow/adamkuert/tulsafoodmaps.com/fcgi.py in run(self=<fcgi.Request object at 0xf7c9d30c>)
  578         """Runs the handler, flushes the streams, and ends the request."""
  579         try:
  580             protocolStatus, appStatus = self.server.handler(self)
  581         except:
  582             traceback.print_exc(file=self.stderr)
protocolStatus undefined, appStatus undefined, self = <fcgi.Request object at 0xf7c9d30c>, self.server = <fcgi.WSGIServer object at 0xf7c9832c>, self.server.handler = <bound method WSGIServer.handler of <fcgi.WSGIServer object at 0xf7c9832c>>
 /home/.jastrow/adamkuert/tulsafoodmaps.com/fcgi.py in handler(self=<fcgi.WSGIServer object at 0xf7c9832c>, req=<fcgi.Request object at 0xf7c9d30c>)
 1264         try:
 1265             try:
 1266                 result = self.application(environ, start_response)
 1267                 try:
 1268                     for data in result:
result = None, self = <fcgi.WSGIServer object at 0xf7c9832c>, self.application = <django.core.handlers.wsgi.WSGIHandler object at 0xf7c98b6c>, environ = {'DH_USER': 'adamkuert', 'DOCUMENT_ROOT': '/home/adamkuert/tulsafoodmaps.com', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'Accept: application/xhtml+xml,text/html;q=0.9,text/plain;', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_ACCEPT_ENCODING': 'gzip', 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'HTTP_CACHE_CONTROL': 'no-cache', 'HTTP_CONNECTION': 'close', 'HTTP_HOST': 'www.tulsafoodmaps.com', ...}, start_response = <function start_response at 0xf7c9c764>
 /home/adamkuert/django_src/django/core/handlers/wsgi.py in __call__(self=<django.core.handlers.wsgi.WSGIHandler object at 0xf7c98b6c>, environ={'DH_USER': 'adamkuert', 'DOCUMENT_ROOT': '/home/adamkuert/tulsafoodmaps.com', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'Accept: application/xhtml+xml,text/html;q=0.9,text/plain;', 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_ACCEPT_ENCODING': 'gzip', 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5', 'HTTP_CACHE_CONTROL': 'no-cache', 'HTTP_CONNECTION': 'close', 'HTTP_HOST': 'www.tulsafoodmaps.com', ...}, start_response=<function start_response at 0xf7c9c764>)
  209             # Check that middleware is still uninitialised.
  210             if self._request_middleware is None:
  211                 self.load_middleware()
  212             self.initLock.release()
  213 
self = <django.core.handlers.wsgi.WSGIHandler object at 0xf7c98b6c>, self.load_middleware = <bound method WSGIHandler.load_middleware of <dj....handlers.wsgi.WSGIHandler object at 0xf7c98b6c>>
 /home/adamkuert/django_src/django/core/handlers/base.py in load_middleware(self=<django.core.handlers.wsgi.WSGIHandler object at 0xf7c98b6c>)
   38                 mod = __import__(mw_module, {}, {}, [''])
   39             except ImportError, e:
   40                 raise exceptions.ImproperlyConfigured, 'Error importing middleware %s: "%s"' % (mw_module, e)
   41             try:
   42                 mw_class = getattr(mod, mw_classname)
exceptions = <module 'django.core.exceptions' from '/home/adamkuert/django_src/django/core/exceptions.pyc'>, exceptions.ImproperlyConfigured = <class 'django.core.exceptions.ImproperlyConfigured'>, mw_module = 'django.middleware.common', e = ImportError('No module named _md5',)

<class 'django.core.exceptions.ImproperlyConfigured'>: Error importing middleware django.middleware.common: "No module named _md5"
      args = ('Error importing middleware django.middleware.common: "No module named _md5"',)
      message = 'Error importing middleware django.middleware.common: "No module named _md5"'