In my model I have to file fields:
video_file_for_proc = models.FileField(upload_to=get_video_upload_path)
video_file = models.FileField(upload_to=get_video_upload_path)
The videos I upload are about 20MB, so 40 in summ. When I save my standard admin form it tries tries and then I get "The connection was reset" in browser. No errors in debug console :( . I played around changing DATA_UPLOAD_MAX_MEMORY_SIZE
and FILE_UPLOAD_MAX_MEMORY_SIZE
, but that did not help. When I experiment with smaller files (some random txt) it works. How can I fix this?