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

Re: Incomplete file save of models.FileField.save

2009-07-02 Thread Xiong Chiamiov
On Jul 2, 5:31 am, masterclock wrote: > 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