Re: Uploading files from IE
Available news archives: comp.lang.tcl - comp.lang.python - comp.security.firewalls - sci.crypt - comp.lang.php - comp.lang.javascript
Google
 
Web news.hping.org


comp.lang.python archive

Re: Uploading files from IE

From: AB <amy-g-art@cox.net>
Date: Thu Mar 23 2006 - 00:34:44 CET

"Irmen de Jong" <irmen.NOSPAM@xs4all.nl> wrote in message
news:4421d24a$0$11071$e4fe514c@news.xs4all.nl...
> AB wrote:
>> All right... I already hated IE. But, now I do even more. My scripts
>> upload function is working in Firefox, but not in IE. If I upload a file
>> from Internet Explorer I get a file on the system named for the full path
>> from the users computer...
>>
>> example...
>> They user uploads C:\mydocs\test.jpg
>> it ends up at /path/to/webdir/C:\mydocs\test.jpg
>> instead of /path/to/webdir/test.jpg
>
> try something like this:
> filename = os.path.basename(fullpathname)

I tried the following with the same result:
myName = ulImage.filename
newFile = file (os.path.join(upload_dir, os.path.basename(myName)), 'wb')

Any other ideas? Seems like it shouldn't be a browser issue though...
Received on Sun Apr 30 20:54:04 2006