Problems are only getting weirder for me. So I'm using a few external
applications, such as django-tagging and template_utils:
Now, if I am viewing my production (mod_python) admin, I have to
configure INSTALLED_APPS this way in order to be clear of
ImportErrors:
INSTALLED_APPS = (
'tagging',
'applications.blogs',
'applications.categorization',
'applications.music',
'applications.dancer',
'applications.radio',
'applications.store',
'django.contrib.comments',
'django.contrib.flatpages',
'django.contrib.sites',
'django.contrib.auth',
'django.contrib.admin',
'django.contrib.contenttypes',
'applications.taglib',
'django.contrib.redirects',
'django.contrib.sessions',
'django.contrib.sitemaps',
'django.contrib.markup',
'django.contrib.humanize',
'django.contrib.webdesign',
'template_utils',
)
Now, if I'm trying to use the development server... it doesn't
recognize any of the applications without relative names and the only
way to fix that is to move those apps inside "applications/" then add
the prefix.
e.g.: applications.template_utils, applications.tagging , etc.
Is this a bug or am I configuring something terribly wrong? o_O;
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---