I am working on uploading a picture to a server. I am able to successfully upload an image using iOS but when i try on android I get the error code 3. Currently using phoneg
The issue probably is not in Phonegap. if the server is a Windows based server, try using another server. Also, don´t forget to add these lines:
var options = new FileUploadOptions(); options.chunkedMode = false; options.headers = { Connection: "close" };