Opened 15 years ago

Closed 15 years ago

#10242 closed (invalid)

FileUploadHandler causes fatal error when refer to POST

Reported by: mutazmq Owned by: nobody
Component: File uploads/storage Version: 1.0
Severity: Keywords: crash python fileuploadhandler post
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I have implemented my own FileUploadHandler and everything goes fine until I refer to POST (self.request.POST) in my code, the whole Python runtime crashes!

I have this problem only with self.request.POST! In contrast, self.request.GET and self.request.user works well.

Can anybody help me to solve this problem please? It is very important for me to overcome this problem ASAP!

I'm running: Django-1.0.2-final, Python 2.5.1 and MySQL on Mac OS 10.5.5

Thanks in advance.

Change History (2)

comment:1 by anonymous, 15 years ago

You should at least attach a stacktrace of the crash, but I assume the devs will also want a testcase with your FileUploadHandler - how else is anyone otherwise going to be able to see the bug?

comment:2 by Jacob, 15 years ago

Resolution: invalid
Status: newclosed

Please don't use the ticket tracker to ask questions -- ask on the django-users mailing list instead. The ticket tracker is only for reporting bugs in Django.

Note: See TracTickets for help on using tickets.
Back to Top