So I managed to get the apps installed after getting dateutil added to
the PYTHONPATH. But somehow whenever I still do a syncdb
i get this error: Error: No module named basic
My settings.py are as follows:
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'tagging',
'basic.*',
)
and my httpd.conf are as follows:
<Location "/">
PythonHandler django.core.handlers.modpython
PythonPath "['/home/usr/webapps/blog','/home/usr/webapps/blog/
myproject/apps','/home/usr/webapps/blog/dateutil/', '/home/usr/webapps/
blog/lib/python2.5'] + sys.path"
SetEnv DJANGO_SETTINGS_MODULE myproject.settings
PythonDebug On
SetHandler python-program
</Location>
Any ideas why syncdb is not working. I know it's because I'm missing
basic but it's actually referenced in my pythonpath (as /home/usr/
webapps/blog/myproject/apps).
> > > > manage.pysyncdbafter downloading django-taggging and django-basic-