Reputation: 3719
I am looking for a decent file uploader. I'm using django, but while i don't NEED a django file uploader, python is preferable. php would also be fine.
can anyone point me in the direction of a good file uploader which is secure and efficient?
EDIT: I need the server-side handler of file uploads.
Upvotes: 1
Views: 768
Reputation: 19495
Agree with jeerose: Uploadify is a nice app.
I've made a simple Django wrapper for it as well if you're interested: django-uploadify. It basically gives you a template tag which renders uploadify and fires a Django signal whenever a file is received.
How you implement the 'handler' you mentioned above is simply a matter of subscribing to the signal and then doing whatever you wish with the incoming data. (the wiki includes an example of creating a new File Model if that's the kind of thing you're looking for)
Upvotes: 2