I have just installed Django-filer following the instructions on the Github page. I am running django 1.4.5 on python 2.7
Some parts of the Settings.py for my app:
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'cms',
'mptt',
'menus',
'south',
'sekizai',
'cms.plugins.file',
#'cms.plugins.picture',
'cms.plugins.text',
'cms.plugins.twitter',
'django.contrib.admin',
'easy_thumbnails',
'filer',
'mptt',
'cmsplugin_nivoslider',
#'sorl.thumbnail',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
)
THUMBNAIL_PROCESSORS = (
'easy_thumbnails.processors.colorspace',
'cmsplugin_nivoslider.thumbnail_processors.pad_image',
'easy_thumbnails.processors.autocrop',
'filer.thumbnail_processors.scale_and_crop_with_subject_location',
'easy_thumbnails.processors.filters',
)
You may have noticed I am trying to get the nivoslider to work too. (The real reason of having Django-filer although I think it would be useful anyway.)
I am a relative newbie with Django-CMS but everyone else is saying that this is usually because you haven't installed easy_thumbnail in the installed apps. I have and have run the syncdb command (several times)
I am a little at a loss here and would appreciate any help that is available.