Opened 17 years ago
Closed 17 years ago
#8021 closed (duplicate)
save_FIELD_file closes tmpfile before moving it
Description ¶
There seems to be a bug in django/db/models/base.py that prevents files bigger than 2.5 megs to be uploaded.
1) create a model called "SimpleFile" with a FileField
2) register it with the admin site
3) log in the admin app, add a new "SimpleFile" with a file larger than 2.5 megs, SUBMIT
At this point I get an IOError because the tmpfile created by the uploadhandler no longer exists.
I believe the bug lies in file django/db/models/base.py line 530. If I comment it out everything works and the temp file is deleted correctly.
Sounds like #7683