Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using fileupload phonegap plugin to upload jpeg file to my server from iPad. It is not working for me.

Here is my code:

window.plugins.fileUploader.uploadByUri('http://192.168.1.54:8080/POC/fileUploader', 'file://Documents/flower.jpg', null, 'myPhoto', 'flower.jpg', 'image/jpeg', 
        function(result) {
            console.log('Done: ' + result);
        }, 
        function(result) {
            console.log("Error: " + result);
        } 

    );

In fileUploader.js file, I put an alert below the uploadbyuri method. But its not displaying. That means that method is not calling.

What mistake I have done? Please help me.

share|improve this question

1 Answer

Please check this plugins its works for me.

https://github.com/phonegap/phonegap-plugins/tree/master/iPhone/FileUploader

and if its not working please specify proper error that you are getting for upload image.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.