Go to Google Groups Home    Django users
Incomplete file save of models.FileField.save

masterclock <mastercl...@gmail.com>

I'm using python2.6 and django 1.0.2

class MyModel(Model):
    file = models.FileField(...)
    ...

mymodel = MyModel(...)

mymodel.file.save(...)

but the saved file is truncated.

when I use admin, the uploaded file is also incomplete.

could anyone give me a reason.