Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Symfony 1.2.9 for a project, and I need to use AJAX to do file uplaod. I have not found a way of doing this yet - despite days of googling.

I am using JQuery and prototype as my javascript frameworks.

Can anyone provide an example of how to upload a file using AJAX, in Symfony?

share|improve this question

1 Answer

up vote 5 down vote accepted

I don't think AJAX itself (as in XMLHTTPREQUEST) can do multipart posts - so you can't use ajax itself to do this.

You can achieve much the same affect though using either flash, or a hidden iframe. I've used swfupload before now, with symfony.

You should take a look at the sfWidgetFormInputSWFUploadPlugin plugin for an example:

http://www.symfony-project.org/plugins/sfWidgetFormInputSWFUploadPlugin

share|improve this answer
recently valums updated their ajax upload plugin, nowadays could track bytes sent and show feedback to the user, i strongly recommend to give a try valums.com/ajax-upload – markcial Jul 20 '10 at 14:49
ta - looks interesting – benlumley Jul 20 '10 at 16:02

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.