I was about to go look up the “Questions” extension to see if it would be more appropriate to this situation, but it looks like inform7.com/ is down right now.
[spoiler][code]
<class ‘django.core.exceptions.ImproperlyConfigured’> Python 2.5: /home/informer7/local/bin/python
Tue Oct 18 10:56:58 2011
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/informer7/inform7.com/fcgi.py in run(self=<fcgi.Request object at 0x958c50>)
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 0x958c50>, self.server = <fcgi.WSGIServer object at 0x958b50>, self.server.handler = <bound method WSGIServer.handler of <fcgi.WSGIServer object at 0x958b50>>
/home/informer7/inform7.com/fcgi.py in handler(self=<fcgi.WSGIServer object at 0x958b50>, req=<fcgi.Request object at 0x958c50>)
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 0x958b50>, self.application = <django.core.handlers.wsgi.WSGIHandler object at 0x958790>, environ = {‘DH_USER’: ‘informer7’, ‘DOCUMENT_ROOT’: ‘/home/informer7/inform7.com’, ‘GATEWAY_INTERFACE’: ‘CGI/1.1’, ‘HTTP_ACCEPT’: ‘text/html,application/xhtml+xml,application/xml;q=0.9,/;q=0.8’, ‘HTTP_ACCEPT_CHARSET’: ‘ISO-8859-1,utf-8;q=0.7,;q=0.7’, ‘HTTP_ACCEPT_ENCODING’: ‘gzip,deflate’, ‘HTTP_ACCEPT_LANGUAGE’: ‘en-us,en;q=0.5’, ‘HTTP_CACHE_CONTROL’: ‘max-age=0’, ‘HTTP_CONNECTION’: ‘close’, ‘HTTP_HOST’: ‘inform7.com’, …}, start_response = <function start_response at 0x2aae5d1e848>
/home/informer7/local/lib/python2.5/site-packages/Django-1.0.2_final-py2.5.egg/django/core/handlers/wsgi.py in call(self=<django.core.handlers.wsgi.WSGIHandler object at 0x958790>, environ={‘DH_USER’: ‘informer7’, ‘DOCUMENT_ROOT’: ‘/home/informer7/inform7.com’, ‘GATEWAY_INTERFACE’: ‘CGI/1.1’, ‘HTTP_ACCEPT’: 'text/html,application/xhtml+xml,application/xml;q=0.9,/;q=0.8’, ‘HTTP_ACCEPT_CHARSET’: 'ISO-8859-1,utf-8;q=0.7,;q=0.7’, ‘HTTP_ACCEPT_ENCODING’: ‘gzip,deflate’, ‘HTTP_ACCEPT_LANGUAGE’: ‘en-us,en;q=0.5’, ‘HTTP_CACHE_CONTROL’: ‘max-age=0’, ‘HTTP_CONNECTION’: ‘close’, ‘HTTP_HOST’: ‘inform7.com’, …}, start_response=<function start_response at 0x2aae5d1e848>)
237 response = http.HttpResponseBadRequest()
238 else:
239 response = self.get_response(request)
240
241 # Apply response middleware
response undefined, self = <django.core.handlers.wsgi.WSGIHandler object at 0x958790>, self.get_response = <bound method WSGIHandler.get_response of <djang…re.handlers.wsgi.WSGIHandler object at 0x958790>>, request = <WSGIRequest GET:<QueryDict: {}>, POST:<QueryDic…gi.url_scheme’: ‘http’, ‘wsgi.version’: (1, 0)}>
/home/informer7/local/lib/python2.5/site-packages/Django-1.0.2_final-py2.5.egg/django/core/handlers/base.py in get_response(self=<django.core.handlers.wsgi.WSGIHandler object at 0x958790>, request=<WSGIRequest GET:<QueryDict: {}>, POST:<QueryDic…gi.url_scheme’: ‘http’, ‘wsgi.version’: (1, 0)}>)
65 # Apply request middleware
66 for middleware_method in self._request_middleware:
67 response = middleware_method(request)
68 if response:
69 return response
response = None, middleware_method = <bound method SessionMiddleware.process_request …middleware.SessionMiddleware object at 0xa4c710>>, request = <WSGIRequest GET:<QueryDict: {}>, POST:<QueryDic…gi.url_scheme’: ‘http’, ‘wsgi.version’: (1, 0)}>
/home/informer7/local/lib/python2.5/site-packages/Django-1.0.2_final-py2.5.egg/django/contrib/sessions/middleware.py in process_request(self=<django.contrib.sessions.middleware.SessionMiddleware object at 0xa4c710>, request=<WSGIRequest GET:<QueryDict: {}>, POST:<QueryDic…gi.url_scheme’: ‘http’, ‘wsgi.version’: (1, 0)}>)
7 class SessionMiddleware(object):
8 def process_request(self, request):
9 engine = import(settings.SESSION_ENGINE, {}, {}, [’’])
10 session_key = request.COOKIES.get(settings.SESSION_COOKIE_NAME, None)
11 request.session = engine.SessionStore(session_key)
engine undefined, builtin import = , global settings = <django.conf.LazySettings object at 0x2aae2980810>, settings.SESSION_ENGINE = ‘django.contrib.sessions.backends.db’
/home/informer7/local/lib/python2.5/site-packages/Django-1.0.2_final-py2.5.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/informer7/local/lib/python2.5/site-packages/Django-1.0.2_final-py2.5.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/informer7/local/lib/python2.5/site-packages/Django-1.0.2_final-py2.5.egg/django/db/init.py in ()
14 # backends that ships with Django, so look there first.
15 _import_path = ‘django.db.backends.’
16 backend = import(’%s%s.base’ % (_import_path, settings.DATABASE_ENGINE), {}, {}, [’’])
17 except ImportError, e:
18 # If the import failed, we might be looking for a database backend
backend undefined, builtin import = , _import_path = None, settings = None, settings.DATABASE_ENGINE undefined
/home/informer7/local/lib/python2.5/site-packages/Django-1.0.2_final-py2.5.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’ [/code][/spoiler]