I have a problem with the actual version of Uploadify (v3.1).
I read the docs, the source and browsed Google and StackOverflow, but cannot find where my problem is.
I have a basic form used to upload files to an internal server. I decided to use Uploadify and manage all of Php with Symfony 2. At first it was not easy, but now everything works fine.
But when I look at my console, I see that uploadify makes a GET request after init and after each of my downloads. The route is called does not exist, and for this page I no longer need action.
Here is my code:
$('#file_upload').uploadify({ debug: true, height: 30, swf: "{{ asset('Route_to_swf') }}", uploader: "{{ path('Route_to_upload') }}", width: 120 });
And here is my console error:
GET http://ip/project/web/app_dev.php/file/upload/ 404 (Not Found)
The route / file / download does not exist, and I do not see it either in my code or in the source. When I watch the demo on the uploadify website, I see that the code looks exactly the same, but there are no free requests.
Does anyone have a clue?
source share