I have implemented the jQuery file upload plugin with a php framework it was relatively straight forward following the instructions.
https://github.com/blueimp/jQuery-File-Upload
My question is specifically towards the PHP class, When the images upload they upload into my framework folder (where the php script is executed). What I want to know is if there is a way to set the path where images will be uploaded to.
This is the class in question.
https://github.com/blueimp/jQuery-File-Upload/blob/master/server/php/UploadHandler.php
It is included in the jQuery file upload repository.