I'm not sure what I am doing wrong. But the uploaded file and it's related cache don't get deleted when the entry is deleted.

I have a photos model inline of a property model, with an FK from the photos model to the property model. I am using 'from sorl.thumbnail import ImageField' to replace the default Django models.ImageField.

In Django Admin, when I delete the entry of a photo, the entry is deleted but the files for that entry are not deleted. I am using Django's runserver for the development and I am not seeing any errors. From what I have read, these files should be removed if the entry is deleted, unless there is a reference to them yet. The only reference that I am seeing yet is in the thumbnail_kvstore table.

Anyone have any thoughts on what I am missing?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

The ImageField from sorl.thumbnail should be an extension of django's FileField

From the release notes of django 1.2.5:

In earlier Django versions, when a model instance containing a FileField was deleted, FileField took it upon itself to also delete the file from the backend storage. This opened the door to several potentially serious data-loss scenarios, including rolled-back transactions and fields on different models referencing the same file. In Django 1.2.5, FileField will never delete files from the backend storage. If you need cleanup of orphaned files, you'll need to handle it yourself (for instance, with a custom management command that can be run manually or scheduled to run periodically via e.g. cron).

link|improve this answer
According to the ImageField in sorl, it is an extension of FileField. However it does have a delete_file method defined which states that it should delete the files. The problem is that it doesn't seem to be calling this on it's own. Possibly because of what you just pointed out. So I guess I am wondering, can I use this method? If so, what is the best way to use it? – bmeyer71 Feb 16 '11 at 16:39
I was able to get a working solution using the delete attribute. ` def delete(self): delete(self.photo) super(PropertyPhotos, self).delete() – bmeyer71 Feb 16 '11 at 19:12
feedback

The delete_file method will only be called in Django < v1.2.5. The best way to delete sorl.thumbnail.ImageField files, thumbnails and key value store references (used by sorl thumbnail) is to use sorl.thumbnail.delete function: sorl.thumbnail.delete(self.photo)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.