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.

Is there a way to submit “multipart/form-data” forms with CakePHP + Ajax + jQuery ?

When I submit the form using Ajax in my CakePHP application, I get all data from the form but not the file that I choose to upload using file control.

This is my code:

    function save_option(id)
    {
       $.ajax({

            type        : "post",
            url         : site_url + "lists/save_option/",              
            data        : $("#option_form_"+id).serialize(),
            success     : function(response) {              
                //on success
            },
            error       : function (XMLHttpRequest, textStatus, errorThrown) {
                alert(textStatus);
            }

       });

    }

Please help me out.

Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

You can't submit files via ajax (generally) due to security restrictions.

However, you can use JS in conjunction with an iframe to get a similar effect. See here for a tutorial : http://www.openjs.com/articles/ajax/ajax_file_upload/

share|improve this answer
Thanks a ton for the link to a solution...I was suspicious about this initially but now I am sure that submitting files via ajax is not possible. Another solution that I came across - atwebresults.com/php_ajax_image_upload - though it basically uses same concept of iframe as you pointed out. – Prashant Apr 11 '11 at 15:20

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.