我刚刚按照 Github 页面上的说明安装了 Django-filer。我在 python 2.7 上运行 django 1.4.5
我的应用程序的 Settings.py 的某些部分:
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',
)
你可能已经注意到我也在尝试让 nivoslider 工作。(拥有 Django-filer 的真正原因,尽管我认为它无论如何都会有用。)
我是 Django-CMS 的相对新手,但其他人都说这通常是因为您没有在已安装的应用程序中安装 easy_thumbnail。我已经运行了 syncdb 命令(多次)
我在这里有点不知所措,如果能提供任何帮助,我将不胜感激。