| ImproperlyConfigured | Python 2.4.4: /usr/bin/python2.4 Thu Mar 11 06:26:17 2010 |
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/.jock/dwfaw/designworkflows.com/fcgi.py in run(self=<fcgi.Request object>) |
| 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>, self.server = <fcgi.WSGIServer object>, self.server.handler = <bound method WSGIServer.handler of <fcgi.WSGIServer object>> |
| /home/.jock/dwfaw/designworkflows.com/fcgi.py in handler(self=<fcgi.WSGIServer object>, req=<fcgi.Request object>) |
| 1264 try: |
| 1265 try: |
| 1266 result = self.application(environ, start_response) |
| 1267 try: |
| 1268 for data in result: |
| result = None, self = <fcgi.WSGIServer object>, self.application = <django.core.handlers.wsgi.WSGIHandler object>, environ = {'DH_USER': 'dwfaw', 'DOCUMENT_ROOT': '/home/dwfaw/designworkflows.com', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'text/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5', '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': 'designworkflows.com', ...}, start_response = <function start_response> |
| /var/lib/python-support/python2.4/django/core/handlers/wsgi.py in __call__(self=<django.core.handlers.wsgi.WSGIHandler object>, environ={'DH_USER': 'dwfaw', 'DOCUMENT_ROOT': '/home/dwfaw/designworkflows.com', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': 'text/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5', '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': 'designworkflows.com', ...}, start_response=<function start_response>) |
| 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>, self.get_response = <bound method WSGIHandler.get_response of <django.core.handlers.wsgi.WSGIHandler object>>, request = <WSGIRequest GET:<QueryDict: {}>, POST:<QueryDic...gi.url_scheme': 'http', 'wsgi.version': (1, 0)}> |
| /var/lib/python-support/python2.4/django/core/handlers/base.py in get_response(self=<django.core.handlers.wsgi.WSGIHandler object>, 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 ...ib.sessions.middleware.SessionMiddleware object>>, request = <WSGIRequest GET:<QueryDict: {}>, POST:<QueryDic...gi.url_scheme': 'http', 'wsgi.version': (1, 0)}> |
| /var/lib/python-support/python2.4/django/contrib/sessions/middleware.py in process_request(self=<django.contrib.sessions.middleware.SessionMiddleware object>, 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>, global settings = <django.conf.LazySettings object>, settings.SESSION_ENGINE = 'django.contrib.sessions.backends.db' |
| /var/lib/python-support/python2.4/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' |
| /var/lib/python-support/python2.4/django/contrib/sessions/backends/db.py |
| 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 |
| /var/lib/python-support/python2.4/django/contrib/sessions/models.py |
| 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 |
| /var/lib/python-support/python2.4/django/db/__init__.py |
| 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 |
| /var/lib/python-support/python2.4/django/db/__init__.py in load_backend(backend_name='mysql_old') |
| 35 error_msg = "%r isn't an available database backend. Available options are: %s\nError was: %s" % \ |
| 36 (backend_name, ", ".join(map(repr, available_backends)), e_user) |
| 37 raise ImproperlyConfigured(error_msg) |
| 38 else: |
| 39 raise # If there's some other error, this must be an error in Django itself. |
| global ImproperlyConfigured = None, error_msg = "'mysql_old' isn't an available database backend....qlite3'\nError was: No module named mysql_old.base" |
ImproperlyConfigured: 'mysql_old' isn't an available database backend. Available options are: 'dummy', 'mysql', 'oracle', 'postgresql', 'postgresql_psycopg2', 'sqlite3'
Error was: No module named mysql_old.base
args =
("'mysql_old' isn't an available database backend....qlite3'\nError was: No module named mysql_old.base",)