Hi,
I had same problem but now from [svn580] (I guess) with the combination of copy and move_uploadd_file
it start to work. The only bad thing is that in batch upload, all the uploaded files will remain in media folder.
I think that in function importImage in img.utils.php the code should be something like this
if ( !copy($imgTmpName, $destination) ) {
if( !move_uploaded_file( $imgTmpName, $destination )){
imgUtils::deleteImage( $newName );
return new imageUploadError( $imgName, "could not copy $imgTmpName image to: $destination" );
}
} else
unlink($imgTmpName);
I add the else statement with unlink, so when the file is copied (not moved by move_uploaded_file) then the source is deleted.
regards
Cony88