Re: file upload with flash 8 uploader

2006-07-08 Thread spako
thanks for the response guys. i fixed the problem to with something similar to what you suggest Malcom. i started a new thread here: http://groups.google.com/group/django-users/browse_thread/thread/baa6c6d64f59639e that fixed the problem, seemed to will be sure to keep it together next time! also

Re: FIXED - file upload with flash 8 uploader

2006-07-08 Thread spako
i've had a look and did actually use the keyword 'and', i think i made the patch in haste before i tested and corrected it, the patch should be: /django/http/__init__.py Index: __init__.py === --- __init__.py (revision 3287) +++ __i

Re: FIXED - file upload with flash 8 uploader

2006-07-07 Thread Don Arbow
On Jul 7, 2006, at 6:17 AM, spako wrote:i think... here's the patch:/django/http/__init__.pyIndex: __init__.py===--- __init__.py (revision 3287)+++ __init__.py (working copy)@@ -48,7 +48,7 @@     POST = MultiValueDict()     FILES = Mul

Re: file upload with flash 8 uploader

2006-07-07 Thread arthur debert
On macrodobe's site, there's a reference implementation of php receiveing the flash upload. it's php, but you can have an idea of where things are on the request: http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=1591.html The flash

Re: file upload with flash 8 uploader

2006-07-07 Thread Malcolm Tredinnick
On Fri, 2006-07-07 at 11:42 +, spako wrote: > i've added some print statements in the django code like this: > > Index: __init__.py > === > --- __init__.py (revision 3287) > +++ __init__.py (working copy) > @@ -39,6 +

FIXED - file upload with flash 8 uploader

2006-07-07 Thread spako
i think... here's the patch: /django/http/__init__.py Index: __init__.py === --- __init__.py (revision 3287) +++ __init__.py (working copy) @@ -48,7 +48,7 @@ POST = MultiValueDict() FILES = MultiValueDict() for submes

Re: file upload with flash 8 uploader

2006-07-07 Thread spako
i've added some print statements in the django code like this: Index: __init__.py === --- __init__.py (revision 3287) +++ __init__.py (working copy) @@ -39,6 +39,8 @@ return '' def parse_file_upload(header_dict, post_data)

Re: file upload with flash 8 uploader

2006-07-07 Thread spako
have gotten the following reqeust header, from a header monitor. i also get an error prointed which i will paste below. also i've pasted the view here, it doesn't seem like the request gets to the view. i have tried hitting the view directly in the browser and that works fine. --- view def

Re: file upload with flash 8 uploader

2006-07-07 Thread Malcolm Tredinnick
On Fri, 2006-07-07 at 09:50 +, spako wrote: > hi > > i'm building a site with which will let the public upload files (after > registration) to the site. i'm going to use flash to upload the files > since the files will be large and with the new flash you can see the > progress of an upload. >

Re: file upload with flash 8 uploader

2006-07-07 Thread patrickk
I´m having a multiple upload and I´m using: for file in request.FILES.getlist('imageupload_file'): ... Am 07.07.2006 um 11:50 schrieb spako: > > hi > > i'm building a site with which will let the public upload files (after > registration) to the site. i'm going to use flash to upload the files >

file upload with flash 8 uploader

2006-07-07 Thread spako
hi i'm building a site with which will let the public upload files (after registration) to the site. i'm going to use flash to upload the files since the files will be large and with the new flash you can see the progress of an upload. the uploader is in a view i have built. i'm expecting the up