Hello.
I download the project but when I'm going to use everything goes correctly unless the server response.
The error is simple.
The problem was in the ajaxuploader.js file, line 229 (rqst.send(file)), when you send something to the server the server response must be in json format and it was not.
Only need tu change this line upload.php:
echo "$fn uploaded";
New One:
echo json_encode(array('msg' => "$fn uploaded"));
Regards. |