I'm trying to work with the blueimp jquery-file-upload plugin. Seems to be a good uploader, but the documentation is not helpful.
When I work with the downloadable demo script, all is ok. But, when I want to change the upload path, that doesn't work.
I've tried to change, in index.php, the action path, like this :
form id="fileupload" action="../uploads/" method="POST" enctype="multipart/form-data"
and added the folders "files" and "thumbnails" in my "uploads" folder.
The GET call is ok, as I can see in Firebug :
GET http://localhost/alliance_pretests/uploads/ 200 OK -8ms
But when I launch the upload action, the POST answers me (still in Firebug) :
POST http://localhost/alliance_pretests/uploads/ 404 Not Found 44ms
I didn't change anything else. What did I forget ?
Why the GET call sees the folder, but not the POST call ?
Thanks in advance. Best regards.