sorl-thumbnail not creating thumbnails

前端 未结 2 1608
清酒与你
清酒与你 2021-01-20 20:56

I\'m having some difficulty with sorl-thumbnail.

My template is as follows:

{% thumbnail project.image \"75x75\" crop=\"center\" as im          


        
2条回答
  •  孤城傲影
    2021-01-20 21:42

    I have had very similar problem with you, I cannot use easy-thumbnails because I need to create thumbnails from external source. what I have figured out is on staging is using the same database as development, so after I rendered the images on development, it stores the cached filenames into database, and when you try to render on staging, it picks up the filenames from the same database, but obviously the files are not on staging.

    Try running

    ./manage thumbnail clear
    

提交回复
热议问题