| <class 'django.core.exceptions.ImproperlyConfigured'> | Python 2.6.2: /home/dongxun/opt/bin/python Tue Jun 18 23:00:40 2013 |
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/dongxun/purifyr.com/fcgi.py in run(self=<fcgi.Request object at 0x336479ac310>) |
| 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 0x336479ac310>, self.server = <fcgi.WSGIServer object at 0x336479ac210>, self.server.handler = <bound method WSGIServer.handler of <fcgi.WSGIServer object at 0x336479ac210>> |
| /home/dongxun/purifyr.com/fcgi.py in handler(self=<fcgi.WSGIServer object at 0x336479ac210>, req=<fcgi.Request object at 0x336479ac310>) |
| 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 0x336479ac210>, self.application = <django.core.handlers.wsgi.WSGIHandler object at 0x336479a2e10>, environ = {'DH_USER': 'dongxun', 'DOCUMENT_ROOT': '/home/dongxun/purifyr.com', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'HTTP_ACCEPT_ENCODING': 'x-gzip, gzip, deflate', 'HTTP_ACCEPT_LANGUAGE': 'en-us,en-gb,en;q=0.7,*;q=0.3', 'HTTP_CONNECTION': 'close', 'HTTP_HOST': 'purifyr.com', 'HTTP_USER_AGENT': 'CCBot/2.0', 'PATH': '/bin:/usr/bin:/sbin:/usr/sbin', ...}, start_response = <function start_response at 0x3364a99eaa0> |
| /home/dongxun/opt/lib/python2.6/site-packages/Django-1.1.1-py2.6.egg/django/core/handlers/wsgi.py in __call__(self=<django.core.handlers.wsgi.WSGIHandler object at 0x336479a2e10>, environ={'DH_USER': 'dongxun', 'DOCUMENT_ROOT': '/home/dongxun/purifyr.com', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'HTTP_ACCEPT_ENCODING': 'x-gzip, gzip, deflate', 'HTTP_ACCEPT_LANGUAGE': 'en-us,en-gb,en;q=0.7,*;q=0.3', 'HTTP_CONNECTION': 'close', 'HTTP_HOST': 'purifyr.com', 'HTTP_USER_AGENT': 'CCBot/2.0', 'PATH': '/bin:/usr/bin:/sbin:/usr/sbin', ...}, start_response=<function start_response at 0x3364a99eaa0>) |
| 239 response = http.HttpResponseBadRequest() |
| 240 else: |
| 241 response = self.get_response(request) |
| 242 |
| 243 # Apply response middleware |
| response undefined, self = <django.core.handlers.wsgi.WSGIHandler object at 0x336479a2e10>, self.get_response = <bound method WSGIHandler.get_response of <djang...ndlers.wsgi.WSGIHandler object at 0x336479a2e10>>, request = <WSGIRequest GET:<QueryDict: {}>, POST:<QueryDic...gi.url_scheme': 'http', 'wsgi.version': (1, 0)}> |
| /home/dongxun/opt/lib/python2.6/site-packages/Django-1.1.1-py2.6.egg/django/core/handlers/base.py in get_response(self=<django.core.handlers.wsgi.WSGIHandler object at 0x336479a2e10>, request=<WSGIRequest GET:<QueryDict: {}>, POST:<QueryDic...gi.url_scheme': 'http', 'wsgi.version': (1, 0)}>) |
| 71 # Apply request middleware |
| 72 for middleware_method in self._request_middleware: |
| 73 response = middleware_method(request) |
| 74 if response: |
| 75 return response |
| response = None, middleware_method = <bound method SessionMiddleware.process_request ...middleware.SessionMiddleware object at 0xae8510>>, request = <WSGIRequest GET:<QueryDict: {}>, POST:<QueryDic...gi.url_scheme': 'http', 'wsgi.version': (1, 0)}> |
| /home/dongxun/opt/lib/python2.6/site-packages/Django-1.1.1-py2.6.egg/django/contrib/sessions/middleware.py in process_request(self=<django.contrib.sessions.middleware.SessionMiddleware object at 0xae8510>, request=<WSGIRequest GET:<QueryDict: {}>, POST:<QueryDic...gi.url_scheme': 'http', 'wsgi.version': (1, 0)}>) |
| 8 class SessionMiddleware(object): |
| 9 def process_request(self, request): |
| 10 engine = import_module(settings.SESSION_ENGINE) |
| 11 session_key = request.COOKIES.get(settings.SESSION_COOKIE_NAME, None) |
| 12 request.session = engine.SessionStore(session_key) |
| engine undefined, global import_module = <function import_module at 0x336479e5a28>, global settings = <django.conf.LazySettings object at 0x336479e7f10>, settings.SESSION_ENGINE = 'django.contrib.sessions.backends.db' |
| /home/dongxun/opt/lib/python2.6/site-packages/Django-1.1.1-py2.6.egg/django/utils/importlib.py in import_module(name='django.contrib.sessions.backends.db', package=None) |
| 32 break |
| 33 level += 1 |
| 34 name = _resolve_name(name[level:], package, level) |
| 35 __import__(name) |
| 36 return sys.modules[name] |
| builtin __import__ = <built-in function __import__>, name = 'django.contrib.sessions.backends.db' |
| /home/dongxun/opt/lib/python2.6/site-packages/Django-1.1.1-py2.6.egg/django/contrib/sessions/backends/db.py in |
| 2 from django.contrib.sessions.models import Session |
| 3 from django.contrib.sessions.backends.base import SessionBase, CreateError |
| 4 from django.core.exceptions import SuspiciousOperation |
| 5 from django.db import IntegrityError, transaction |
| 6 from django.utils.encoding import force_unicode |
| django undefined, Session undefined |
| /home/dongxun/opt/lib/python2.6/site-packages/Django-1.1.1-py2.6.egg/django/contrib/sessions/models.py in |
| 2 import cPickle as pickle |
| 3 |
| 4 from django.db import models |
| 5 from django.utils.translation import ugettext_lazy as _ |
| 6 from django.conf import settings |
| django undefined, models undefined |
| /home/dongxun/opt/lib/python2.6/site-packages/Django-1.1.1-py2.6.egg/django/db/__init__.py in |
| 39 raise # If there's some other error, this must be an error in Django itself. |
| 40 |
| 41 backend = load_backend(settings.DATABASE_ENGINE) |
| 42 |
| 43 # `connection`, `DatabaseError` and `IntegrityError` are convenient aliases |
| backend undefined, load_backend = None, settings = None, settings.DATABASE_ENGINE undefined |
| /home/dongxun/opt/lib/python2.6/site-packages/Django-1.1.1-py2.6.egg/django/db/__init__.py in load_backend(backend_name='mysql') |
| 15 # Most of the time, the database backend will be one of the official |
| 16 # backends that ships with Django, so look there first. |
| 17 return import_module('.base', 'django.db.backends.%s' % backend_name) |
| 18 except ImportError, e: |
| 19 # If the import failed, we might be looking for a database backend |
| global import_module = None, backend_name = 'mysql' |
| /home/dongxun/opt/lib/python2.6/site-packages/Django-1.1.1-py2.6.egg/django/utils/importlib.py in import_module(name='django.db.backends.mysql.base', package='django.db.backends.mysql') |
| 32 break |
| 33 level += 1 |
| 34 name = _resolve_name(name[level:], package, level) |
| 35 __import__(name) |
| 36 return sys.modules[name] |
| builtin __import__ = <built-in function __import__>, name = 'django.db.backends.mysql.base' |
| /home/dongxun/opt/lib/python2.6/site-packages/Django-1.1.1-py2.6.egg/django/db/backends/mysql/base.py in |
| 11 except ImportError, e: |
| 12 from django.core.exceptions import ImproperlyConfigured |
| 13 raise ImproperlyConfigured("Error loading MySQLdb module: %s" % e) |
| 14 |
| 15 # We want version (1, 2, 1, 'final', 2) or later. We can't just use |
| ImproperlyConfigured = None, e = None |
<class 'django.core.exceptions.ImproperlyConfigured'>: Error loading MySQLdb module: libmysqlclient_r.so.15: cannot open shared object file: No such file or directory
args =
('Error loading MySQLdb module: libmysqlclient_r.s...pen shared object file: No such file or directory',)
message =
'Error loading MySQLdb module: libmysqlclient_r.s...pen shared object file: No such file or directory'