30 Jan
2004
30 Jan
'04
1:16 a.m.
Sounds like you need to recompile your C extensions. This is easily done from your SOFTWARE_HOME directory:
% python setup.py build_ext -if
This worked perfectly, I actually ran it from the ZOPE_HOME.
[..]
ImportError: No module named _mysql
Looks like you need to install mysql-python, which ZMySQLDA depends on. This gets installed into your python site-packages by default. Download it and do:
python setup.py install
Thank you all for the help. I have much joy now. Cheers, Mike