Gossamer Forum
Home : General : Perl Programming :

DBI Malformed multipart POST

Quote Reply
DBI Malformed multipart POST
I am getting this Malformed multipart POST error when users try to upload a file to my system. It only seems to happen with Microcrap Explorer and only when they go through Microsoft even worst Proxy server.

So far I know that DBI is spitting this error
Code:
# default number of bytes to read
$bytes = $bytes | | $FILLUNIT;

# Fill up our internal buffer in such a way that the boundary
# is never split between reads.
$self->fillBuffer($bytes);

# Find the boundary in the buffer (it may not be there).
my $start = index($self->{BUFFER},$self->{BOUNDARY});
# protect against malformed multipart POST operations
die "Malformed multipart POST\n" unless ($start >= 0) | | ($self->{LENGTH} > 0);

but I don't know why.

Any ideas? HELP...