Here is the error I got:
ImproperlyConfigured: Error importing template source loader django.template.loaders.filesystem.load_template_source: "'module' object has no attribute 'load_template_source'"
Here is my loader template code:
if DEBUG:
TEMPLATE_LOADERS = [
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
]
else:
TEMPLATE_LOADERS = [
('django.template.loaders.cached.Loader',(
'django.template.loaders.filesystem.load_template_source',
'django.template.loaders.app_directories.load_template_source',
'forum.modules.template_loader.module_templates_loader',
'forum.skins.load_template_source',
)),
]
All of this code was there when I downloaded the project from the internet. I'm trying to setup OSQA using these instructions. I'm running MS SQL Server and have Python 2.6 installed. Any help on how to fix this error (found when I try to run manage.py
runserver and hit the http link where my stuff is setup. the error pops up in the command line). I'm new to Django and Python so I don't really know to how to diagnose what is happening.