I'm trying to get Django working on Windows with Apache and MS SQL
Server.

I have completed.
1) Install Apache
2) Install Python 2.5
3) Install mod_python and configure
4) Install Django
5) Setup test project
-- here I learn my Python install is going to need a
-- few more things If I'm going to use SQL Server
6) Install PDO-1.3.2
7) Install pywin
8) Install adodbapi-2.1

refresh the root URL of my test project and "bam"... error
The traceback is below my sig.  Any ideas on how to solve this?

Kelly Greer
[EMAIL PROTECTED]
change nospam to yahoo

Traceback (most recent call last):

  File "C:\Python25\lib\site-packages\mod_python\importer.py", line
1537, in HandlerDispatch
    default=default_handler, arg=req, silent=hlist.silent)

  File "C:\Python25\lib\site-packages\mod_python\importer.py", line
1229, in _process_target
    result = _execute_target(config, req, object, arg)

  File "C:\Python25\lib\site-packages\mod_python\importer.py", line
1128, in _execute_target
    result = object(arg)

  File "C:\Python25\lib\site-packages\django\core\handlers
\modpython.py", line 177, in handler
    return ModPythonHandler()(req)

  File "C:\Python25\lib\site-packages\django\core\handlers
\modpython.py", line 145, in __call__
    self.load_middleware()

  File "C:\Python25\lib\site-packages\django\core\handlers\base.py",
line 29, in load_middleware
    mod = __import__(mw_module, {}, {}, [''])

  File "C:\Python25\lib\site-packages\django\contrib\sessions
\middleware.py", line 2, in <module>
    from django.contrib.sessions.models import Session

  File "C:\Python25\lib\site-packages\django\contrib\sessions
\models.py", line 3, in <module>
    from django.db import models

  File "C:\Python25\lib\site-packages\django\db\__init__.py", line 11,
in <module>
    backend = __import__('django.db.backends.%s.base' %
settings.DATABASE_ENGINE, {}, {}, [''])

  File "C:\Python25\lib\site-packages\django\db\backends\ado_mssql
\base.py", line 12, in <module>
    raise ImproperlyConfigured, "Error loading adodbapi module: %s" %
e

ImproperlyConfigured: Error loading adodbapi module: No module named
System


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to