On Mon, 2006-02-27 at 15:13 -0800, [EMAIL PROTECTED] wrote:
> I'm using Apache 2x and Python 2.3 ... using /mysite/ when I open the
> page in the browser I get the following message:
> 
> ImproperlyConfigured: Could not load database backend:
> /usr/lib/python2.3/lib-dynload/arraymodule.so: undefined symbol:
> PyUnicodeUCS4_FromUnicode. Is your DATABASE_ENGINE setting (currently,
> 'mysql') spelled correctly? Available options are: 'ado_mssql',
> 'mysql', 'postgresql', 'sqlite3'
> 
> However, I can access mysql through python, and successfully used
> djangoadmin and manage.py to create the project/apps and database
> tables. (and verified in mysql)

Your problem isn't access to mysql -- that is only the final error being
spat out. The real problem is the undefined symbol. It looks like your
Python setup is not quite correct, at least when accessed by Apache +
mod_python.

For starters, I would look at whether "import array" and "import
cPickle" work from the command line. If they don't, you have a simple
case to work on. If they do work, try to work out what is different in
Apache's environment.

Normally, though, this error message occurs because the binary modules
are built for a Python that is using UCS2 (two byte Unicode encoding)
internally and the module wants UCS4 encoding. That is normally pretty
hard to mess up, unless you rebuilt only some of Python from source or
have more than one Python build on the system and the wrong one is being
used. Anyway, it's not a MySQL problem or a Django problem. This is a
problem with your Python installation.

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to