I’m trying to upload file, using XMLHTTPRequest, and sending this headers:
Content-Type:multipart/form-data, boundary=xxxxxxxxx
--xxxxxxxxx
Content-Disposition: form-data; name='uploadfile'; filename='123_logo.jpg'
Content-Transfer-Encoding: base64
Content-Type: image/jpeg
/*base64data*/
But on server side PHP ignore header “Content-Transfer-Encoding: base64”
and write base64 undecoded data directly into the file!
Is there any way to fix it?
p.s. it is very important to send data using base64
My previous answer was wrong
Content-Transfer-Encodingmay appear in the a composite bodyhttp://www.ietf.org/rfc/rfc2616.txt