Topic: Upload status:100% but can't see the "real file", only tmp file

Hi, first of all thanks for this superb uploader. However, I have a problem:  the upload is happening ( the done.gif icon is in the status column)
but the "upload_tmp_dir" folder isn't created and the file isn't anywhere.

So what I did is create the upload_tmp_dir mannualy, and also changed in the "upload.php" file that line of code:

$targetDir = ini_get("upload_tmp_dir") . DIRECTORY_SEPARATOR . "plupload";

to

$targetDir = "../upload_tmp_dir";

and what happens now is that the file is uploaded into the upload_temp_dir folder as a *.tmp file, but it stays there and doesnt get moved in another folder.

Any clues on what could be the solution? Many thanks in advance.

-Jay

Re: Upload status:100% but can't see the "real file", only tmp file

Could be write permission problems or similar. Hard to tell, the example code works fine on our Linux and Windows servers so.

3 (edited by wxzhuo 2010-04-16 09:23:02)

Re: Upload status:100% but can't see the "real file", only tmp file

Jay ->
I had the similar problem, 2 things to do:

1) If you set unique_names : true, try removing it... believe this part needs some more work tongue

2) Also, check the upload_tmp_dir = xxx directive in your php.ini as well as folder permissions