0

我对 Django CMS 真的很陌生。

我创建了一个虚拟环境,安装了 django cms,并且我有两个带有占位符的简单模板。

我已经为文件、图像和文件夹安装了 django filer。它可以工作,但是当我上传图像时..图像实际上是上传的,我可以在媒体文件夹中看到,但在 django 界面上,缩略图是未定义的。

我已经安装easy_thumbnails,但在媒体文件夹中我看不到“filer_public_thumbnails”文件夹。

这可能与此类似的问题: undefined uploads using django cms cmsplugin_filer_file and cmsplugin_filer_image

我理解了这个问题,但我不知道如何解决...我试图手动创建目录,但它不起作用。

如果我检查“未定义”缩略图窗口,控制台中有两个错误:

Failed to load resource: the server responded with a status of 500 (INTERNAL SERVER ERROR) 
Failed to load resource: the server responded with a status of 404 (NOT FOUND) 

请问有什么提示吗?

4

1 回答 1

0

在我的情况下,问题在此之后消失:在 settings.py 中:

USE_TZ = False 

原因:easy-thumbnails 1.0.3 中的一个错误

于 2013-02-19T04:01:47.660 回答