Re: Incomplete file save of models.FileField.save

2009-07-02 Thread masterclock
All files are truncated regargless of its size or file type. and, each file is truncated to a certain size. this happens even I don't use a server. I tried saving a file in "manage.py shell" from local disk to local disk, but it is still incomplete. > > Are all files truncated?  Are they trunca

Incomplete file save of models.FileField.save

2009-07-02 Thread masterclock
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. --~--~-~--~~-