Igor, I am using plupload in one project.
I don't have it in a pluggable app unfortunatelly, but can share my
knowledge.
Not sure that uploading images using _only_ in-memory files is the
right way (for sure it depends on your project and your audience and
your hardware etc).

I am using only TemporaryFileUploadHandler.
Files are uploaded by plupload in chunks mode (using 1 Mb chunk size)
with unique filename (again, provided by plupload).
On the server side each chunk is stored in the correspondent temporary
file using append mode.
After the last chunk has been uploaded file is checked according to my
project needs and stored in model.
For your app you are free to upload it to picasaweb and drop it on the
server, for example.

Yuri.

On Jul 23, 2:34 pm, Igor Rubinovich <[email protected]> wrote:
> Hello,
>
> Has anyone tried using plupload with django?
>
> On top of generally missing how to do it exactly (server side of
> course), I'm also curious about whether I can prevent storing files in
> the filesystem while uploading - i.e. use some in-memory files. I need
> it because I don't keep any images on the server but rather send them
> directly to picasaweb.
>
> Thanks for any tips,
> Igor

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to